From c751a73636e6e4f23521f8c3c2a75715a1f2dc4b Mon Sep 17 00:00:00 2001 From: g4titanx Date: Wed, 7 Jan 2026 19:18:46 +0100 Subject: [PATCH 1/6] feat(transforms): impl. mba transform --- crates/transforms/src/lib.rs | 1 + crates/transforms/src/mba.rs | 427 + crates/transforms/src/obfuscator.rs | 7 +- output | 22714 ++++++++++++++++++++++++++ 4 files changed, 23148 insertions(+), 1 deletion(-) create mode 100644 crates/transforms/src/mba.rs create mode 100644 output diff --git a/crates/transforms/src/lib.rs b/crates/transforms/src/lib.rs index 47e94cc..f9d6a66 100644 --- a/crates/transforms/src/lib.rs +++ b/crates/transforms/src/lib.rs @@ -2,6 +2,7 @@ pub mod arithmetic_chain; pub mod cluster_shuffle; pub mod function_dispatcher; pub mod jump_address_transformer; +pub mod mba; pub mod obfuscator; pub mod opaque_predicate; pub mod push_split; diff --git a/crates/transforms/src/mba.rs b/crates/transforms/src/mba.rs new file mode 100644 index 0000000..5b96322 --- /dev/null +++ b/crates/transforms/src/mba.rs @@ -0,0 +1,427 @@ +//! Mixed Boolean Arithmetic (MBA) transform. +//! +//! Example identities (unsigned integers): +//! x + y == (x ^ y) + ((x & y) << 1) +//! x + y == (x | y) + (x & y) +//! b - a == b + (~a + 1) + +use crate::{collect_protected_nodes, collect_protected_pcs, Result, Transform}; +use azoth_core::cfg_ir::{Block, CfgIrBundle}; +use azoth_core::decoder::Instruction; +use azoth_core::Opcode; +use rand::rngs::StdRng; +use rand::Rng; +use tracing::debug; + +const MAX_INSTRUCTIONS_ADDED: usize = 24; + +/// Mixed Boolean Arithmetic transform. +#[derive(Debug, Default)] +pub struct Mba {} + +impl Mba { + pub fn new() -> Self { + Self::default() + } +} + +impl Transform for Mba { + fn name(&self) -> &'static str { + "MBA" + } + + fn apply(&self, ir: &mut CfgIrBundle, rng: &mut StdRng) -> Result { + debug!("=== MBA Transform Start ==="); + + let protected_pcs = collect_protected_pcs(ir); + let protected_nodes = collect_protected_nodes(ir); + + let mut changed = false; + let mut total_rewrites = 0usize; + let mut total_noise = 0usize; + + let node_indices: Vec<_> = ir.cfg.node_indices().collect(); + for node_idx in node_indices { + if protected_nodes.contains(&node_idx) { + continue; + } + + let Some(Block::Body(body)) = ir.cfg.node_weight_mut(node_idx) else { + continue; + }; + + let mut edits: Vec<(usize, Vec, bool)> = Vec::new(); + let instructions = &body.instructions; + + for (idx, instr) in instructions.iter().enumerate() { + if protected_pcs.contains(&instr.pc) { + continue; + } + + let Some((rewrite, has_noise)) = self.pick_rewrite(instructions, idx, rng) else { + continue; + }; + + let added = rewrite.len().saturating_sub(1); + if added > MAX_INSTRUCTIONS_ADDED { + continue; + } + + edits.push((idx, rewrite, has_noise)); + } + + if edits.is_empty() { + continue; + } + + let instructions = &mut body.instructions; + let mut block_changed = false; + + for (idx, mut replacement, has_noise) in edits.into_iter().rev() { + let start_pc = instructions[idx].pc; + assign_pcs(start_pc, &mut replacement); + instructions.splice(idx..=idx, replacement); + block_changed = true; + total_rewrites += 1; + if has_noise { + total_noise += 1; + } + } + + if block_changed { + body.max_stack = body.max_stack.saturating_add(4); + changed = true; + } + } + + if changed { + debug!( + "MBA rewrote {} instructions (noise appended: {})", + total_rewrites, total_noise + ); + } + + debug!("=== MBA Transform Complete ==="); + Ok(changed) + } +} + +#[derive(Clone, Copy, Debug)] +enum NoiseSource { + CallData { offset: u8 }, + Caller, + Number, + Timestamp, +} + +#[derive(Clone, Copy, Debug, PartialEq)] +enum NoiseEncoding { + XorZero, + OrZero, + AddZero, + SubZero, + AndNotZero, +} + +impl NoiseSource { + fn random(rng: &mut StdRng) -> Self { + match rng.random_range(0..4) { + 0 => { + let offsets = [0u8, 4u8, 0x20u8]; + let offset = offsets[rng.random_range(0..offsets.len())]; + NoiseSource::CallData { offset } + } + 1 => NoiseSource::Caller, + 2 => NoiseSource::Number, + _ => NoiseSource::Timestamp, + } + } + + fn emit(self, out: &mut Vec) { + match self { + NoiseSource::CallData { offset } => { + if offset == 0 { + out.push(instr(Opcode::PUSH0, None)); + } else { + out.push(instr(Opcode::PUSH(1), Some(format!("{offset:02x}")))); + } + out.push(instr(Opcode::CALLDATALOAD, None)); + } + NoiseSource::Caller => out.push(instr(Opcode::CALLER, None)), + NoiseSource::Number => out.push(instr(Opcode::NUMBER, None)), + NoiseSource::Timestamp => out.push(instr(Opcode::TIMESTAMP, None)), + } + } +} + +impl NoiseEncoding { + fn random(rng: &mut StdRng) -> Self { + match rng.random_range(0..5) { + 0 => NoiseEncoding::XorZero, + 1 => NoiseEncoding::OrZero, + 2 => NoiseEncoding::AddZero, + 3 => NoiseEncoding::SubZero, + _ => NoiseEncoding::AndNotZero, + } + } + + fn emit(self, out: &mut Vec) { + match self { + NoiseEncoding::XorZero => { + out.push(instr(Opcode::PUSH0, None)); + out.push(instr(Opcode::XOR, None)); + } + NoiseEncoding::OrZero => { + out.push(instr(Opcode::PUSH0, None)); + out.push(instr(Opcode::OR, None)); + } + NoiseEncoding::AddZero => { + out.push(instr(Opcode::PUSH0, None)); + out.push(instr(Opcode::ADD, None)); + } + NoiseEncoding::SubZero => { + out.push(instr(Opcode::PUSH0, None)); + out.push(instr(Opcode::SUB, None)); + } + NoiseEncoding::AndNotZero => { + out.push(instr(Opcode::PUSH0, None)); + out.push(instr(Opcode::NOT, None)); + out.push(instr(Opcode::AND, None)); + } + } + } +} + +fn instr(op: Opcode, imm: Option) -> Instruction { + Instruction { pc: 0, op, imm } +} + +fn assign_pcs(start_pc: usize, instructions: &mut [Instruction]) { + let mut pc = start_pc; + for instr in instructions { + instr.pc = pc; + pc += instr.byte_size(); + } +} + +impl Mba { + fn pick_rewrite( + &self, + instructions: &[Instruction], + idx: usize, + rng: &mut StdRng, + ) -> Option<(Vec, bool)> { + let instr = instructions.get(idx)?; + let opcode = instr.op; + + let eligible = match opcode { + Opcode::ADD | Opcode::SUB => true, + _ => false, + }; + if !eligible { + return None; + } + + if instructions + .get(idx + 1) + .is_some_and(|next| matches!(next.op, Opcode::JUMP | Opcode::JUMPI)) + { + return None; + } + + let (mut rewrite, pattern_name) = match opcode { + Opcode::ADD => { + if rng.random::() { + (build_add_xor_and(), "add_xor_and") + } else { + (build_add_or_and(), "add_or_and") + } + } + Opcode::SUB => { + if rng.random::() { + (build_sub_borrow(), "sub_borrow") + } else { + (build_sub_twos_complement(), "sub_twos_complement") + } + } + _ => return None, + }; + + debug!( + "MBA rewrite pc={:#x} opcode={:?} pattern={}", + instr.pc, opcode, pattern_name + ); + append_noise(&mut rewrite, rng); + + Some((rewrite, true)) + } +} + +fn build_add_xor_and() -> Vec { + vec![ + // a + b = (a ^ b) + ((a & b) << 1) + instr(Opcode::DUP(1), None), + instr(Opcode::DUP(3), None), + instr(Opcode::AND, None), + instr(Opcode::SWAP(1), None), + instr(Opcode::DUP(3), None), + instr(Opcode::XOR, None), + instr(Opcode::SWAP(2), None), + instr(Opcode::POP, None), + instr(Opcode::PUSH(1), Some("01".into())), + instr(Opcode::SHL, None), + instr(Opcode::ADD, None), + ] +} + +fn build_add_or_and() -> Vec { + vec![ + // a + b = (a | b) + (a & b) + instr(Opcode::DUP(1), None), + instr(Opcode::DUP(3), None), + instr(Opcode::AND, None), + instr(Opcode::SWAP(1), None), + instr(Opcode::DUP(3), None), + instr(Opcode::OR, None), + instr(Opcode::SWAP(2), None), + instr(Opcode::POP, None), + instr(Opcode::ADD, None), + ] +} + +fn build_sub_borrow() -> Vec { + vec![ + // b - a = (a ^ b) - ((~b & a) << 1) + instr(Opcode::DUP(2), None), + instr(Opcode::NOT, None), + instr(Opcode::DUP(2), None), + instr(Opcode::AND, None), + instr(Opcode::SWAP(1), None), + instr(Opcode::DUP(3), None), + instr(Opcode::XOR, None), + instr(Opcode::SWAP(2), None), + instr(Opcode::POP, None), + instr(Opcode::PUSH(1), Some("01".into())), + instr(Opcode::SHL, None), + instr(Opcode::SUB, None), + ] +} + +fn build_sub_twos_complement() -> Vec { + vec![ + // b - a = b + (~a + 1) + instr(Opcode::DUP(1), None), + instr(Opcode::NOT, None), + instr(Opcode::PUSH(1), Some("01".into())), + instr(Opcode::ADD, None), + instr(Opcode::SWAP(1), None), + instr(Opcode::POP, None), + instr(Opcode::ADD, None), + ] +} + +fn append_noise(out: &mut Vec, rng: &mut StdRng) { + let source = NoiseSource::random(rng); + let encoding_a = NoiseEncoding::random(rng); + let mut encoding_b = NoiseEncoding::random(rng); + if encoding_b == encoding_a { + encoding_b = NoiseEncoding::random(rng); + } + + debug!( + "MBA noise source={:?} enc_a={:?} enc_b={:?}", + source, encoding_a, encoding_b + ); + source.emit(out); + encoding_a.emit(out); + out.push(instr(Opcode::ADD, None)); + + source.emit(out); + encoding_b.emit(out); + out.push(instr(Opcode::SUB, None)); +} + +#[cfg(test)] +mod tests { + use super::*; + use azoth_core::cfg_ir::Block; + use azoth_core::cfg_ir::CfgIrBundle; + use azoth_core::process_bytecode_to_cfg; + use rand::SeedableRng; + use tracing_subscriber::EnvFilter; + + const COUNTER_DEPLOYMENT: &str = + include_str!("../../../tests/bytecode/counter/counter_deployment.hex"); + const COUNTER_RUNTIME: &str = + include_str!("../../../tests/bytecode/counter/counter_runtime.hex"); + + fn count_instructions(ir: &CfgIrBundle) -> usize { + ir.cfg + .node_indices() + .filter_map(|n| match &ir.cfg[n] { + Block::Body(body) => Some(body.instructions.len()), + _ => None, + }) + .sum() + } + + fn count_ops(ir: &CfgIrBundle, f: impl Fn(Opcode) -> bool) -> usize { + ir.cfg + .node_indices() + .filter_map(|n| match &ir.cfg[n] { + Block::Body(body) => Some(body.instructions.iter().filter(|ins| f(ins.op)).count()), + _ => None, + }) + .sum() + } + + fn init_tracing() { + let _ = tracing_subscriber::fmt() + .with_env_filter(EnvFilter::new("debug")) + .with_test_writer() + .try_init(); + } + + #[tokio::test] + async fn mba_rewrites_and_injects_noise() { + init_tracing(); + + let (mut ir, _, _, _) = + process_bytecode_to_cfg(COUNTER_DEPLOYMENT, false, COUNTER_RUNTIME, false) + .await + .unwrap(); + + let add_sub_count = count_ops(&ir, |op| matches!(op, Opcode::ADD | Opcode::SUB)); + assert!(add_sub_count > 0, "fixture should contain ADD or SUB"); + + let before_instrs = count_instructions(&ir); + let before_noise = count_ops(&ir, |op| { + matches!( + op, + Opcode::CALLDATALOAD | Opcode::CALLER | Opcode::NUMBER | Opcode::TIMESTAMP + ) + }); + + let mut rng = StdRng::seed_from_u64(0x5eed_u64); + let mba = Mba::new(); + let changed = mba.apply(&mut ir, &mut rng).unwrap(); + + let after_instrs = count_instructions(&ir); + let after_noise = count_ops(&ir, |op| { + matches!( + op, + Opcode::CALLDATALOAD | Opcode::CALLER | Opcode::NUMBER | Opcode::TIMESTAMP + ) + }); + + assert!(changed, "MBA should rewrite at least one instruction"); + assert!( + after_instrs > before_instrs, + "MBA should expand instruction count" + ); + assert!( + after_noise > before_noise, + "MBA should inject runtime noise sources" + ); + } +} diff --git a/crates/transforms/src/obfuscator.rs b/crates/transforms/src/obfuscator.rs index c741d98..3bf6400 100644 --- a/crates/transforms/src/obfuscator.rs +++ b/crates/transforms/src/obfuscator.rs @@ -1,5 +1,6 @@ use crate::arithmetic_chain::ArithmeticChain; use crate::function_dispatcher::FunctionDispatcher; +use crate::mba::Mba; use crate::push_split::PushSplit; use crate::Transform; use azoth_core::seed::Seed; @@ -62,7 +63,11 @@ impl Default for ObfuscationConfig { fn default() -> Self { Self { seed: Seed::generate(), - transforms: vec![Box::new(ArithmeticChain::new()), Box::new(PushSplit::new())], + transforms: vec![ + Box::new(ArithmeticChain::new()), + Box::new(PushSplit::new()), + Box::new(Mba::new()), + ], preserve_unknown_opcodes: true, } } diff --git a/output b/output new file mode 100644 index 0000000..7faa5d9 --- /dev/null +++ b/output @@ -0,0 +1,22714 @@ + +running 1 test + +=== Testing Original (Non-Obfuscated) Deployment === +✓ Original deployment SUCCEEDED + +=== Proceeding with Obfuscated Deployment === +DEBUG azoth_transform::obfuscator: Starting obfuscation pipeline: +DEBUG azoth_transform::obfuscator: User transforms: 4 +DEBUG heimdall_disassembler::core: fetching target bytecode took 842.88µs +DEBUG heimdall_disassembler::core: disassembly took 3.101676ms + INFO heimdall_disassembler::core: disassembled 11779 bytes successfully +DEBUG heimdall_disassembler::core: disassembly took 3.985737ms + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x2dd5, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x2e00, using INVALID as placeholder (byte will be recovered from original during encode) +DEBUG azoth_core::detection::sections: Processing bytecode: 11779 bytes, 6741 instructions +DEBUG azoth_core::detection::sections: Auxdata offset: 11726 +DEBUG azoth_core::detection::sections: Initial detection: init_end=750, runtime_start=751, runtime_len=11028 +DEBUG azoth_core::detection::sections: Clamped runtime_len to 10975 +DEBUG azoth_core::detection::sections: Gap between init_end (750) and runtime_start (751) is only 1 bytes, too small for constructor args (min: 4), treating as padding or part of init +DEBUG azoth_core::detection::sections: Including 1 padding byte(s) between init_end (750) and runtime_start (751) in init section +DEBUG azoth_core::detection::sections: Creating Init section: offset=0, len=751 +DEBUG azoth_core::detection::sections: Creating Runtime section: offset=751, len=10975 +DEBUG azoth_core::detection::sections: Adding auxdata section: offset=11726, len=53 +DEBUG azoth_core::detection::sections: Final sections before validation: [Section { kind: Init, offset: 0, len: 751 }, Section { kind: Runtime, offset: 751, len: 10975 }, Section { kind: Auxdata, offset: 11726, len: 53 }] +DEBUG azoth_core::detection::sections: Validating section: kind=Init, offset=0, len=751, end=751 +DEBUG azoth_core::detection::sections: Validating section: kind=Runtime, offset=751, len=10975, end=11726 +DEBUG azoth_core::detection::sections: Validating section: kind=Auxdata, offset=11726, len=53, end=11779 +DEBUG azoth_core::detection::sections: Sections validation passed: [Section { kind: Init, offset: 0, len: 751 }, Section { kind: Runtime, offset: 751, len: 10975 }, Section { kind: Auxdata, offset: 11726, len: 53 }] +DEBUG azoth_core::strip: Stripping bytecode with 3 sections +DEBUG azoth_core::strip: Processing section: Init at offset 0 (len: 751) +DEBUG azoth_core::strip: Stripping section: Init +DEBUG azoth_core::strip: Processing section: Runtime at offset 751 (len: 10975) +DEBUG azoth_core::strip: Keeping Runtime section in clean bytecode +DEBUG azoth_core::strip: Processing section: Auxdata at offset 11726 (len: 53) +DEBUG azoth_core::strip: Stripping section: Auxdata +DEBUG azoth_core::strip: Stripping complete: 10975 bytes clean runtime, 804 bytes saved +DEBUG azoth_core: Filtering instructions to runtime section: PC range [751, 11726) +DEBUG azoth_core: Filtered from 6741 total instructions to 6264 runtime instructions +DEBUG azoth_core::cfg_ir: Building CFG from 6264 instructions across 3 sections +DEBUG azoth_core::detection::dispatcher: Found standard extraction pattern at instruction 13 +DEBUG azoth_core::detection::dispatcher: Starting stack tracking from instruction 17 +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x046f7da2 at instruction 18 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x046f7da2 -> target 0x144 (PUSH at PC 0x30d) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x1aa7c0ec at instruction 23 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x1aa7c0ec -> target 0x13f (PUSH at PC 0x318) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x2feef2ec at instruction 28 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x2feef2ec -> target 0x13a (PUSH at PC 0x323) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x308657d7 at instruction 33 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x308657d7 -> target 0x135 (PUSH at PC 0x32e) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x33ee5f35 at instruction 38 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x33ee5f35 -> target 0x130 (PUSH at PC 0x339) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x3ccfd60b at instruction 43 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x3ccfd60b -> target 0x12b (PUSH at PC 0x344) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x5a4fd645 at instruction 48 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x5a4fd645 -> target 0x126 (PUSH at PC 0x34f) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x80f323a7 at instruction 53 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x80f323a7 -> target 0x121 (PUSH at PC 0x35a) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x81972d00 at instruction 58 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x81972d00 -> target 0x11c (PUSH at PC 0x365) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x8677ab23 at instruction 63 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x8677ab23 -> target 0x117 (PUSH at PC 0x370) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x8bd03d0a at instruction 68 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x8bd03d0a -> target 0x112 (PUSH at PC 0x37b) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x9940686e at instruction 73 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x9940686e -> target 0x10d (PUSH at PC 0x386) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xa65e2cfd at instruction 78 +DEBUG azoth_core::detection::dispatcher: Paired selector 0xa65e2cfd -> target 0x108 (PUSH at PC 0x391) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xcb766a56 at instruction 83 +DEBUG azoth_core::detection::dispatcher: Paired selector 0xcb766a56 -> target 0x103 (PUSH at PC 0x39c) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xd415b3f9 at instruction 88 +DEBUG azoth_core::detection::dispatcher: Paired selector 0xd415b3f9 -> target 0xfe (PUSH at PC 0x3a7) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xd4899a62 at instruction 93 +DEBUG azoth_core::detection::dispatcher: Paired selector 0xd4899a62 -> target 0xf9 (PUSH at PC 0x3b2) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xede7f6a3 at instruction 98 +DEBUG azoth_core::detection::dispatcher: Paired selector 0xede7f6a3 -> target 0xf4 (PUSH at PC 0x3bd) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xf3a504f2 at instruction 103 +DEBUG azoth_core::detection::dispatcher: Paired selector 0xf3a504f2 -> target 0xef (PUSH at PC 0x3c8) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xfe03a460 at instruction 107 +DEBUG azoth_core::detection::dispatcher: Paired selector 0xfe03a460 -> target 0xea (PUSH at PC 0x3d2) +DEBUG azoth_core::detection::dispatcher: Stopping at REVERT after finding 19 selectors +DEBUG azoth_core::detection::dispatcher: Stack tracking found 19 selector-target pairs +DEBUG azoth_core::detection::dispatcher: Found dispatcher preamble at instruction 0 (free memory pointer setup) +DEBUG azoth_core::detection::dispatcher: Dispatcher range: preamble starts at 0, extraction at 13, selectors end at ~107 +DEBUG azoth_transform::obfuscator: Input size: 11779 bytes +DEBUG azoth_transform::obfuscator: Total instructions: 6741 +DEBUG azoth_transform::obfuscator: Unknown opcodes: 4 +DEBUG azoth_transform::obfuscator: Detected sections: [(Init, 751), (Runtime, 10975), (Auxdata, 53)] +DEBUG azoth_transform::obfuscator: Clean runtime size: 804 bytes +DEBUG azoth_transform::obfuscator: Bytes saved by stripping: 804 +DEBUG azoth_transform::obfuscator: CFG blocks: 775 +DEBUG azoth_transform::obfuscator: CFG instructions: 6264 +DEBUG azoth_transform::obfuscator: Checking for dispatcher in 6264 runtime instructions +DEBUG azoth_core::detection::dispatcher: Found standard extraction pattern at instruction 13 +DEBUG azoth_core::detection::dispatcher: Starting stack tracking from instruction 17 +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x046f7da2 at instruction 18 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x046f7da2 -> target 0x144 (PUSH at PC 0x30d) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x1aa7c0ec at instruction 23 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x1aa7c0ec -> target 0x13f (PUSH at PC 0x318) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x2feef2ec at instruction 28 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x2feef2ec -> target 0x13a (PUSH at PC 0x323) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x308657d7 at instruction 33 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x308657d7 -> target 0x135 (PUSH at PC 0x32e) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x33ee5f35 at instruction 38 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x33ee5f35 -> target 0x130 (PUSH at PC 0x339) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x3ccfd60b at instruction 43 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x3ccfd60b -> target 0x12b (PUSH at PC 0x344) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x5a4fd645 at instruction 48 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x5a4fd645 -> target 0x126 (PUSH at PC 0x34f) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x80f323a7 at instruction 53 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x80f323a7 -> target 0x121 (PUSH at PC 0x35a) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x81972d00 at instruction 58 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x81972d00 -> target 0x11c (PUSH at PC 0x365) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x8677ab23 at instruction 63 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x8677ab23 -> target 0x117 (PUSH at PC 0x370) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x8bd03d0a at instruction 68 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x8bd03d0a -> target 0x112 (PUSH at PC 0x37b) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x9940686e at instruction 73 +DEBUG azoth_core::detection::dispatcher: Paired selector 0x9940686e -> target 0x10d (PUSH at PC 0x386) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xa65e2cfd at instruction 78 +DEBUG azoth_core::detection::dispatcher: Paired selector 0xa65e2cfd -> target 0x108 (PUSH at PC 0x391) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xcb766a56 at instruction 83 +DEBUG azoth_core::detection::dispatcher: Paired selector 0xcb766a56 -> target 0x103 (PUSH at PC 0x39c) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xd415b3f9 at instruction 88 +DEBUG azoth_core::detection::dispatcher: Paired selector 0xd415b3f9 -> target 0xfe (PUSH at PC 0x3a7) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xd4899a62 at instruction 93 +DEBUG azoth_core::detection::dispatcher: Paired selector 0xd4899a62 -> target 0xf9 (PUSH at PC 0x3b2) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xede7f6a3 at instruction 98 +DEBUG azoth_core::detection::dispatcher: Paired selector 0xede7f6a3 -> target 0xf4 (PUSH at PC 0x3bd) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xf3a504f2 at instruction 103 +DEBUG azoth_core::detection::dispatcher: Paired selector 0xf3a504f2 -> target 0xef (PUSH at PC 0x3c8) +DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xfe03a460 at instruction 107 +DEBUG azoth_core::detection::dispatcher: Paired selector 0xfe03a460 -> target 0xea (PUSH at PC 0x3d2) +DEBUG azoth_core::detection::dispatcher: Stopping at REVERT after finding 19 selectors +DEBUG azoth_core::detection::dispatcher: Stack tracking found 19 selector-target pairs +DEBUG azoth_core::detection::dispatcher: Found dispatcher preamble at instruction 0 (free memory pointer setup) +DEBUG azoth_core::detection::dispatcher: Dispatcher range: preamble starts at 0, extraction at 13, selectors end at ~107 +DEBUG azoth_transform::obfuscator: Function dispatcher detected with 19 selectors - adding FunctionDispatcher transform +DEBUG azoth_transform::obfuscator: Applying 5 transforms +DEBUG azoth_transform::obfuscator: Transform 0: FunctionDispatcher (pre: 775 blocks, 6264 instructions) +DEBUG azoth_transform::function_dispatcher: Prepared multi-tier dispatcher blueprint tiers=20 selectors=19 assignments=19 +DEBUG azoth_transform::function_dispatcher::patterns::layout: multi-tier: highest existing pc end=0x2dce, runtime_bounds=Some((751, 11726)) +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2dde decoy_start=0x2dd0 stub_target_rel=0x2ae1 stub_width=2 +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2df2 decoy_start=0x2de5 stub_target_rel=0x2af6 stub_width=2 +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2e07 decoy_start=0x2df9 stub_target_rel=0x2b0a stub_width=2 +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2e1b decoy_start=0x2e0e stub_target_rel=0x2b1f stub_width=2 +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2e2f decoy_start=0x2e22 stub_target_rel=0x2b33 stub_width=2 +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2e44 decoy_start=0x2e36 stub_target_rel=0x2b47 stub_width=2 +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2e59 decoy_start=0x2e4b stub_target_rel=0x2b5c stub_width=2 +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2e6e decoy_start=0x2e60 stub_target_rel=0x2b71 stub_width=2 +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2e83 decoy_start=0x2e75 stub_target_rel=0x2b86 stub_width=2 +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2e98 decoy_start=0x2e8a stub_target_rel=0x2b9b stub_width=2 +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2ead decoy_start=0x2e9f stub_target_rel=0x2bb0 stub_width=2 +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2ec2 decoy_start=0x2eb4 stub_target_rel=0x2bc5 stub_width=2 +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2ed7 decoy_start=0x2ec9 stub_target_rel=0x2bda stub_width=2 +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2eeb decoy_start=0x2ede stub_target_rel=0x2bef stub_width=2 +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2f00 decoy_start=0x2ef2 stub_target_rel=0x2c03 stub_width=2 +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2f15 decoy_start=0x2f07 stub_target_rel=0x2c18 stub_width=2 +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2f2a decoy_start=0x2f1c stub_target_rel=0x2c2d stub_width=2 +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2f3f decoy_start=0x2f31 stub_target_rel=0x2c42 stub_width=2 +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2f53 decoy_start=0x2f46 stub_target_rel=0x2c57 stub_width=2 +DEBUG azoth_transform::function_dispatcher::token: Token generation: 1 selector(s) must preserve byte[0]=0x80 +DEBUG azoth_transform::function_dispatcher::token: Token generation: 1 selector(s) must preserve byte[0]=0x99 +DEBUG azoth_transform::function_dispatcher::token: Token generation: 1 selector(s) must preserve byte[0]=0xd4 +DEBUG azoth_transform::function_dispatcher::token: Token generation: 1 selector(s) must preserve byte[2]=0x6a +DEBUG azoth_transform::function_dispatcher::token: Token generation: 1 selector(s) must preserve byte[0]=0x30 +DEBUG azoth_transform::function_dispatcher::token: Token generation: 1 selector(s) must preserve byte[2]=0x04 +DEBUG azoth_transform::function_dispatcher::token: Token generation: 1 selector(s) must preserve byte[2]=0xab +DEBUG azoth_transform::function_dispatcher::token: Token generation: 1 selector(s) must preserve byte[2]=0xc0 +DEBUG azoth_transform::function_dispatcher::token: Token generation: 1 selector(s) must preserve byte[2]=0xd6 +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x046f7da2 start_pc=0x2f58 stub_pc=0x2e44 invalid_pc=0x2e34 has_pattern=true +DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x046f7da2 start_pc=0x2f58 end_pc=0x2f6a instruction_count=10 opcodes=["JUMPDEST", "PUSH(2)", "SLOAD", "ISZERO", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "PUSH(2)", "JUMP"] +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x1aa7c0ec start_pc=0x2f6a stub_pc=0x2e83 invalid_pc=0x2e73 has_pattern=true +DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x1aa7c0ec start_pc=0x2f6a end_pc=0x2f81 instruction_count=14 opcodes=["JUMPDEST", "PUSH(1)", "CALLDATALOAD", "PUSH(1)", "BYTE", "PUSH(1)", "EQ", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "JUMPDEST", "PUSH(2)", "JUMP"] +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x2feef2ec start_pc=0x2f81 stub_pc=0x2e6e invalid_pc=0x2e5e has_pattern=true +DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x2feef2ec start_pc=0x2f81 end_pc=0x2f93 instruction_count=10 opcodes=["JUMPDEST", "PUSH(2)", "SLOAD", "ISZERO", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "PUSH(2)", "JUMP"] +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x308657d7 start_pc=0x2f93 stub_pc=0x2f15 invalid_pc=0x2f05 has_pattern=true +DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x308657d7 start_pc=0x2f93 end_pc=0x2faa instruction_count=14 opcodes=["JUMPDEST", "PUSH(1)", "CALLDATALOAD", "PUSH(1)", "BYTE", "PUSH(1)", "EQ", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "JUMPDEST", "PUSH(2)", "JUMP"] +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x33ee5f35 start_pc=0x2faa stub_pc=0x2e98 invalid_pc=0x2e88 has_pattern=true +DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x33ee5f35 start_pc=0x2faa end_pc=0x2fbc instruction_count=10 opcodes=["JUMPDEST", "PUSH(2)", "SLOAD", "ISZERO", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "PUSH(2)", "JUMP"] +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x3ccfd60b start_pc=0x2fbc stub_pc=0x2dde invalid_pc=0x2dce has_pattern=true +DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x3ccfd60b start_pc=0x2fbc end_pc=0x2fd3 instruction_count=14 opcodes=["JUMPDEST", "PUSH(1)", "CALLDATALOAD", "PUSH(1)", "BYTE", "PUSH(1)", "EQ", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "JUMPDEST", "PUSH(2)", "JUMP"] +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x5a4fd645 start_pc=0x2fd3 stub_pc=0x2ead invalid_pc=0x2e9d has_pattern=true +DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x5a4fd645 start_pc=0x2fd3 end_pc=0x2fe5 instruction_count=10 opcodes=["JUMPDEST", "PUSH(2)", "SLOAD", "ISZERO", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "PUSH(2)", "JUMP"] +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x80f323a7 start_pc=0x2fe5 stub_pc=0x2ec2 invalid_pc=0x2eb2 has_pattern=true +DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x80f323a7 start_pc=0x2fe5 end_pc=0x2ffc instruction_count=14 opcodes=["JUMPDEST", "PUSH(1)", "CALLDATALOAD", "PUSH(1)", "BYTE", "PUSH(1)", "EQ", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "JUMPDEST", "PUSH(2)", "JUMP"] +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x81972d00 start_pc=0x2ffc stub_pc=0x2f2a invalid_pc=0x2f1a has_pattern=true +DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x81972d00 start_pc=0x2ffc end_pc=0x300e instruction_count=10 opcodes=["JUMPDEST", "PUSH(2)", "SLOAD", "ISZERO", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "PUSH(2)", "JUMP"] +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x8677ab23 start_pc=0x300e stub_pc=0x2f00 invalid_pc=0x2ef0 has_pattern=true +DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x8677ab23 start_pc=0x300e end_pc=0x3025 instruction_count=14 opcodes=["JUMPDEST", "PUSH(1)", "CALLDATALOAD", "PUSH(1)", "BYTE", "PUSH(1)", "EQ", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "JUMPDEST", "PUSH(2)", "JUMP"] +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x8bd03d0a start_pc=0x3025 stub_pc=0x2f3f invalid_pc=0x2f2f has_pattern=true +DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x8bd03d0a start_pc=0x3025 end_pc=0x3037 instruction_count=10 opcodes=["JUMPDEST", "PUSH(2)", "SLOAD", "ISZERO", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "PUSH(2)", "JUMP"] +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x9940686e start_pc=0x3037 stub_pc=0x2e07 invalid_pc=0x2df7 has_pattern=true +DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x9940686e start_pc=0x3037 end_pc=0x304e instruction_count=14 opcodes=["JUMPDEST", "PUSH(1)", "CALLDATALOAD", "PUSH(1)", "BYTE", "PUSH(1)", "EQ", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "JUMPDEST", "PUSH(2)", "JUMP"] +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0xa65e2cfd start_pc=0x304e stub_pc=0x2e59 invalid_pc=0x2e49 has_pattern=true +DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0xa65e2cfd start_pc=0x304e end_pc=0x3060 instruction_count=10 opcodes=["JUMPDEST", "PUSH(2)", "SLOAD", "ISZERO", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "PUSH(2)", "JUMP"] +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0xcb766a56 start_pc=0x3060 stub_pc=0x2ed7 invalid_pc=0x2ec7 has_pattern=true +DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0xcb766a56 start_pc=0x3060 end_pc=0x3077 instruction_count=14 opcodes=["JUMPDEST", "PUSH(1)", "CALLDATALOAD", "PUSH(1)", "BYTE", "PUSH(1)", "EQ", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "JUMPDEST", "PUSH(2)", "JUMP"] +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0xd415b3f9 start_pc=0x3077 stub_pc=0x2eeb invalid_pc=0x2edc has_pattern=true +DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0xd415b3f9 start_pc=0x3077 end_pc=0x3089 instruction_count=10 opcodes=["JUMPDEST", "PUSH(2)", "SLOAD", "ISZERO", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "PUSH(2)", "JUMP"] +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0xd4899a62 start_pc=0x3089 stub_pc=0x2e2f invalid_pc=0x2e20 has_pattern=true +DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0xd4899a62 start_pc=0x3089 end_pc=0x30a0 instruction_count=14 opcodes=["JUMPDEST", "PUSH(1)", "CALLDATALOAD", "PUSH(1)", "BYTE", "PUSH(1)", "EQ", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "JUMPDEST", "PUSH(2)", "JUMP"] +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0xede7f6a3 start_pc=0x30a0 stub_pc=0x2e1b invalid_pc=0x2e0c has_pattern=true +DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0xede7f6a3 start_pc=0x30a0 end_pc=0x30b2 instruction_count=10 opcodes=["JUMPDEST", "PUSH(2)", "SLOAD", "ISZERO", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "PUSH(2)", "JUMP"] +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0xf3a504f2 start_pc=0x30b2 stub_pc=0x2df2 invalid_pc=0x2de3 has_pattern=true +DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0xf3a504f2 start_pc=0x30b2 end_pc=0x30c9 instruction_count=14 opcodes=["JUMPDEST", "PUSH(1)", "CALLDATALOAD", "PUSH(1)", "BYTE", "PUSH(1)", "EQ", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "JUMPDEST", "PUSH(2)", "JUMP"] +DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0xfe03a460 start_pc=0x30c9 stub_pc=0x2f53 invalid_pc=0x2f44 has_pattern=true +DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0xfe03a460 start_pc=0x30c9 end_pc=0x30db instruction_count=10 opcodes=["JUMPDEST", "PUSH(2)", "SLOAD", "ISZERO", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "PUSH(2)", "JUMP"] +DEBUG azoth_transform::function_dispatcher: Function dispatcher obfuscated via multi-tier layout +DEBUG azoth_transform::obfuscator: Result: changed=true +DEBUG azoth_transform::obfuscator: Post: 851 blocks (+76), 6737 instructions (+473) +DEBUG azoth_transform::obfuscator: Transform 1: ArithmeticChain (pre: 851 blocks, 6737 instructions) +DEBUG azoth_transform::arithmetic_chain: === ArithmeticChain Transform Start === +DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0x448 - zero value +DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0x4c5 - zero value +DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0x560 - zero value +DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0x5fe - zero value +DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0x6b2 - zero value +DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0x704 - zero value +DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0x805 - zero value +DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0x8e3 - zero value +DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0x98e - zero value +DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0xa4c - zero value +DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0xb0c - zero value +DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0xbdc - zero value +DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0xbff - zero value +DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0xc21 - zero value +DEBUG azoth_transform::arithmetic_chain: Found PUSH19 target at PC 0xdb5, node NodeIndex(200), value: 0x10dbdb9d1c9858dd081b9bdd08199d5b991959 +DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0xdf7, node NodeIndex(203), value: 0x54686520636f6e747261637420776173206e6f742066756e646564206f722068 +DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0xe1d, node NodeIndex(203), value: 0x6173206265656e20647261696e656420616c7265616479000000000000000000 +DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0xfa1, node NodeIndex(230), value: 0x426f6e64206d757374206265206174206c656173742068616c66206f66207265 +DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x1001, node NodeIndex(233), value: 0x416e6f74686572206578656375746f7220697320616c726561647920626f6e64 +DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x1058, node NodeIndex(236), value: 0x436f6e747261637420616c72656164792066756e646564000000000000000000 +DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x10f0, node NodeIndex(242), value: 0x5061796d656e7420616d6f756e74206d757374206265206e6f6e2d7a65726f00 +DEBUG azoth_transform::arithmetic_chain: Found PUSH20 target at PC 0x1215, node NodeIndex(260), value: 0x15185c99d95d08189b1bd8dac81d1bdbc81bdb19 +DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x1375, node NodeIndex(279), value: 0x48656164657220626c6f636b206e756d626572206d69736d6174636800000000 +DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x13c1, node NodeIndex(282), value: 0x496e76616c69642072656365697074204d50542070726f6f6600000000000000 +DEBUG azoth_transform::arithmetic_chain: Found PUSH22 target at PC 0x140d, node NodeIndex(285), value: 0x125b9d985b1a5908151c985b9cd9995c88195d995b9d +DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x1478, node NodeIndex(289), value: 0x43616e6e6f74207265736574207768696c6520626f6e64206973206163746976 +DEBUG azoth_transform::arithmetic_chain: Found PUSH16 target at PC 0x14fc, node NodeIndex(298), value: 0x125b9d985b1a5908149314081b1a5cdd +DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x16bb, node NodeIndex(338), value: 0x496e76616c6964207265636569707473526f6f7420524c5020656e636f64696e +DEBUG azoth_transform::arithmetic_chain: Found PUSH19 target at PC 0x17f4, node NodeIndex(358), value: 0x0496e76616c6964207265636569707420524c5 +DEBUG azoth_transform::arithmetic_chain: Found PUSH16 target at PC 0x1836, node NodeIndex(361), value: 0x0496e76616c6964206c6f677320524c5 +DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x19de, node NodeIndex(394), value: 0x524c50206f6666736574206f7574206f6620626f756e64730000000000000000 +DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x1d61, node NodeIndex(460), value: 0x457870656374656420737472696e67206974656d2c20676f74206c6973740000 +DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x1dad, node NodeIndex(463), value: 0x457870656374656420524c50206c69737420666f722070726f6f66206e6f6465 +DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x25c0, node NodeIndex(632), value: 0x496e76616c6964206164647265737320524c5020656e636f64696e6700000000 +DEBUG azoth_transform::arithmetic_chain: Found PUSH21 target at PC 0x264d, node NodeIndex(638), value: 0x57726f6e67206576656e74207369676e6174757265 +DEBUG azoth_transform::arithmetic_chain: Found PUSH19 target at PC 0x2691, node NodeIndex(641), value: 0x0a8de40c2c8c8e4cae6e640dad2e6dac2e8c6d +DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x275d, node NodeIndex(648), value: 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef +DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x2da3, node NodeIndex(773), value: 0x457870656374656420737472696e6720646174612c20676f74206c6973740000 +DEBUG azoth_transform::arithmetic_chain: Found 24 PUSH targets for transformation +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via CODECOPY at offset 0 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via CODECOPY at offset 32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via CODECOPY at offset 64 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 7 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 8 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via CODECOPY at offset 96 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via CODECOPY at offset 128 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via CODECOPY at offset 160 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 7 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via CODECOPY at offset 192 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via CODECOPY at offset 224 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 7 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 8 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 7 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 8 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 7 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via CODECOPY at offset 256 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 7 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 8 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via CODECOPY at offset 288 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 7 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via CODECOPY at offset 320 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via CODECOPY at offset 352 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via CODECOPY at offset 384 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via CODECOPY at offset 416 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 7 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 8 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via CODECOPY at offset 448 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 7 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via CODECOPY at offset 480 +DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 +DEBUG azoth_transform::arithmetic_chain: Chain: 4 values, 3 ops, load_size=44, ops_size=5, chain_size=49, original=20, growth=29 +DEBUG azoth_transform::arithmetic_chain: Chain: 6 values, 5 ops, load_size=66, ops_size=5, chain_size=71, original=33, growth=38 +DEBUG azoth_transform::arithmetic_chain: Chain: 9 values, 8 ops, load_size=99, ops_size=11, chain_size=110, original=33, growth=77 +DEBUG azoth_transform::arithmetic_chain: Chain: 3 values, 2 ops, load_size=33, ops_size=2, chain_size=35, original=33, growth=2 +DEBUG azoth_transform::arithmetic_chain: Chain: 8 values, 7 ops, load_size=88, ops_size=7, chain_size=95, original=33, growth=62 +DEBUG azoth_transform::arithmetic_chain: Chain: 3 values, 2 ops, load_size=33, ops_size=3, chain_size=36, original=33, growth=3 +DEBUG azoth_transform::arithmetic_chain: Chain: 6 values, 5 ops, load_size=66, ops_size=8, chain_size=74, original=33, growth=41 +DEBUG azoth_transform::arithmetic_chain: Chain: 9 values, 8 ops, load_size=99, ops_size=9, chain_size=108, original=21, growth=87 +DEBUG azoth_transform::arithmetic_chain: Chain: 9 values, 8 ops, load_size=99, ops_size=11, chain_size=110, original=33, growth=77 +DEBUG azoth_transform::arithmetic_chain: Chain: 8 values, 7 ops, load_size=88, ops_size=9, chain_size=97, original=33, growth=64 +DEBUG azoth_transform::arithmetic_chain: Chain: 7 values, 6 ops, load_size=77, ops_size=9, chain_size=86, original=23, growth=63 +DEBUG azoth_transform::arithmetic_chain: Chain: 9 values, 8 ops, load_size=99, ops_size=12, chain_size=111, original=33, growth=78 +DEBUG azoth_transform::arithmetic_chain: Chain: 7 values, 6 ops, load_size=77, ops_size=7, chain_size=84, original=17, growth=67 +DEBUG azoth_transform::arithmetic_chain: Chain: 6 values, 5 ops, load_size=66, ops_size=7, chain_size=73, original=33, growth=40 +DEBUG azoth_transform::arithmetic_chain: Chain: 3 values, 2 ops, load_size=33, ops_size=2, chain_size=35, original=20, growth=15 +DEBUG azoth_transform::arithmetic_chain: Chain: 8 values, 7 ops, load_size=88, ops_size=10, chain_size=98, original=17, growth=81 +DEBUG azoth_transform::arithmetic_chain: Chain: 3 values, 2 ops, load_size=33, ops_size=3, chain_size=36, original=33, growth=3 +DEBUG azoth_transform::arithmetic_chain: Chain: 5 values, 4 ops, load_size=55, ops_size=6, chain_size=61, original=33, growth=28 +DEBUG azoth_transform::arithmetic_chain: Chain: 5 values, 4 ops, load_size=55, ops_size=5, chain_size=60, original=33, growth=27 +DEBUG azoth_transform::arithmetic_chain: Chain: 3 values, 2 ops, load_size=33, ops_size=3, chain_size=36, original=33, growth=3 +DEBUG azoth_transform::arithmetic_chain: Chain: 9 values, 8 ops, load_size=99, ops_size=10, chain_size=109, original=22, growth=87 +DEBUG azoth_transform::arithmetic_chain: Chain: 8 values, 7 ops, load_size=88, ops_size=10, chain_size=98, original=20, growth=78 +DEBUG azoth_transform::arithmetic_chain: Chain: 4 values, 3 ops, load_size=44, ops_size=3, chain_size=47, original=33, growth=14 +DEBUG azoth_transform::arithmetic_chain: Chain: 3 values, 2 ops, load_size=33, ops_size=2, chain_size=35, original=33, growth=2 +DEBUG azoth_transform::arithmetic_chain: Runtime length estimate: base=11756, growth=1066, total=12822 +DEBUG azoth_transform::arithmetic_chain: Data section: 512 bytes +DEBUG azoth_transform::arithmetic_chain: === ArithmeticChain Transform Complete === +DEBUG azoth_transform::obfuscator: Result: changed=true +DEBUG azoth_transform::obfuscator: Post: 851 blocks (+0), 7097 instructions (+360) +DEBUG azoth_transform::obfuscator: Transform 2: PushSplit (pre: 851 blocks, 7097 instructions) +DEBUG azoth_transform::push_split: PushSplit: scanning for eligible PUSH4–PUSH16 literals +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2ef +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x3d9 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x3de +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x3e3 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x3e8 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x3ed +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x3f2 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x3f7 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x3fc +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x401 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x406 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x40b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x410 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x415 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x41a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x41f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x424 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x429 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x42e +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x433 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x439 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x444 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x487 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x48d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x4af +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x4b5 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x4e9 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x4ef +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x50b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x511 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x528 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x52e +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x539 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x54d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x556 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x588 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x590 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x598 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x5ac +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x5bc +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x5c5 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x5d3 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x5fa +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x630 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x635 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x644 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x64e +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x658 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x65f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x664 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x66a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x680 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x686 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x69d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x6a3 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x6ae +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x6f0 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x6f6 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x734 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x73a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x751 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x757 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x763 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x782 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x787 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x78d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x791 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x796 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x7a5 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x7ad +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x7ba +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x7c0 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x7cf +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x7d4 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x830 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x838 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x857 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x85c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x861 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x870 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x879 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x87e +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x88a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x89d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x8a2 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x8aa +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x8b0 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x8ba +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x8c0 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x8cc +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x90b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x921 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x926 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x931 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x93c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x944 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x949 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x95d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x98a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x9c0 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x9c4 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x9d8 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x9e7 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x9f0 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x9f5 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x9fb +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xa06 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xa19 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xa1f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xa36 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xa3c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xa70 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xa76 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xa82 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xa94 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xaa7 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xacf +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xae9 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xaf2 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xafe +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb0b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb33 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb43 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb50 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb57 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb63 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb70 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb76 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb7c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb89 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb8f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xba5 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xbb9 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xbc3 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xbcb +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xbd0 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xbd5 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xc47 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xc4c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xc5d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xc66 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xc80 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xc89 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xc99 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xca2 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xcd9 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xced +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xcf2 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xcfe +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xd05 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xd0b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xd2a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xd30 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xd47 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xd4d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xd93 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xd99 +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0x8c8ff3ff65cb530b into parts=^0xed8ed47a17f90607 ^0x3cecbd313687c975 ^0x4a98a79091b2abac ^0x17753d24d50737d5 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: MLOAD | pc=0x0: PUSH8 8c8ff3ff65cb530b] after=[pc=0x0: CODECOPY | pc=0x0: PUSH1 00 | pc=0x0: MLOAD | pc=0x0: PUSH8 ed8ed47a17f90607 | pc=0x9: XOR | pc=0xa: PUSH8 3cecbd313687c975] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0x76261377 into parts=-0xf726c5b5 -0x30bb295a -0x61f7fd7a +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: XOR | pc=0x0: PUSH4 76261377] after=[pc=0x1e: PUSH8 17753d24d50737d5 | pc=0x27: XOR | pc=0x0: XOR | pc=0x0: PUSH4 f726c5b5 | pc=0x5: SUB | pc=0x6: PUSH4 30bb295a] +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xdd5 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xddb +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0x6e955fa1a1a82fe1defb7698c66b6889 into parts=+0x1f10a20087de46a79e5aead386db0ebf -0x62ac9df78db7876ec19fc4cf321b3430 -0xfe0c7379090734ecb8b5a798f446c96a -0x4fc230ee4f775a6a450a07d29a0da89c +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: XOR | pc=0x0: PUSH16 6e955fa1a1a82fe1defb7698c66b6889] after=[pc=0x0: MUL | pc=0x0: PUSH2 6a8d | pc=0x0: XOR | pc=0x0: PUSH16 1f10a20087de46a79e5aead386db0ebf | pc=0x11: ADD | pc=0x12: PUSH16 62ac9df78db7876ec19fc4cf321b3430] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0x0e48abd7a398c7c3 into parts=+0x8e7f20391b10fd51 +0x25ef6125332872a9 +0x59da2a79555f57c9 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: PUSH32 10e5a42ca5d4250ac9312dcbc65ee6ff7882a5add19612eadb13e57f3c0fb850 | pc=0x0: PUSH8 0e48abd7a398c7c3] after=[pc=0xe1b: ADD | pc=0xe1c: MSTORE | pc=0x0: PUSH32 10e5a42ca5d4250ac9312dcbc65ee6ff7882a5add19612eadb13e57f3c0fb850 | pc=0x0: PUSH8 8e7f20391b10fd51 | pc=0x9: ADD | pc=0xa: PUSH8 25ef6125332872a9] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0x227f8631 into parts=-0x70d06fb7 -0x33208199 +0xb21d1ffd +0x14535784 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH4 227f8631] after=[pc=0x14: PUSH8 59da2a79555f57c9 | pc=0x1d: ADD | pc=0x0: ADD | pc=0x0: PUSH4 70d06fb7 | pc=0x5: SUB | pc=0x6: PUSH4 33208199] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0x1e1e0794a3f0a405 into parts=^0x7bca71fa3c14b204 ^0x65d4766e9fe41601 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: MUL | pc=0x0: PUSH8 1e1e0794a3f0a405] after=[pc=0x0: PUSH1 0b | pc=0x0: MUL | pc=0x0: PUSH8 7bca71fa3c14b204 | pc=0x9: XOR ] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0x6f4a64a805122a66 into parts=+0x24e922842da5f11c +0xa5e4d6e6399e26a4 +0xa47c6b3d9dce12a6 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: SUB | pc=0x0: PUSH8 6f4a64a805122a66] after=[pc=0x0: PUSH2 ec52 | pc=0x0: SWAP(1) | pc=0x0: SUB | pc=0x0: PUSH8 24e922842da5f11c | pc=0x9: ADD | pc=0xa: PUSH8 a5e4d6e6399e26a4] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0xfb12563c into parts=+0x7cfde2d2 +0x4e545952 +0x378023a1 +0xf83ff677 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: XOR | pc=0x0: PUSH4 fb12563c] after=[pc=0x0: XOR | pc=0x0: PUSH32 d8ad2d894578f956c16e96a8e87688da4cf16c1d6016a9184a5222e63ab20833 | pc=0x0: XOR | pc=0x0: PUSH4 7cfde2d2 | pc=0x5: ADD | pc=0x6: PUSH4 4e545952] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0xe48 width=4 value=0x4e487b71 into parts=^0x1e31fd4a ^0xfabd695a ^0xaac4ef61 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0xe47: JUMPDEST | pc=0xe48: PUSH4 4e487b71] after=[pc=0xe47: JUMPDEST | pc=0xe48: PUSH4 1e31fd4a | pc=0xe4d: XOR | pc=0xe4e: PUSH4 fabd695a | pc=0xe53: XOR | pc=0xe54: PUSH4 aac4ef61] +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe5b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe69 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe6a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe6f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe7c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe7d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe8a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe8b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe97 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe98 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe9e +DEBUG azoth_transform::push_split: PushSplit: split at pc=0xedd width=4 value=0x4e487b71 into parts=-0x51a87fa7 -0x600f04e8 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0xedc: JUMPDEST | pc=0xedd: PUSH4 4e487b71] after=[pc=0xedc: JUMPDEST | pc=0xedd: PUSH4 51a87fa7 | pc=0xee2: SUB | pc=0xee3: PUSH4 600f04e8] +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xef0 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xf0e +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xf12 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xf17 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xf23 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xf2d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xf3a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xf40 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xf7f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xf85 +DEBUG azoth_transform::push_split: PushSplit: split at pc=0xfc7 width=11 value=0x1dd85c9908185b5bdd5b9d into parts=+0xef17fe807e0bd0d15c04dc -0xd5f700e98f2664b3681653 -0xfb48a0fde6cd10c21692ec +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0xfc6: MSTORE | pc=0xfc7: PUSH11 1dd85c9908185b5bdd5b9d] after=[pc=0xfc4: DUP(3) | pc=0xfc5: ADD | pc=0xfc6: MSTORE | pc=0xfc7: PUSH11 ef17fe807e0bd0d15c04dc | pc=0xfd3: ADD | pc=0xfd4: PUSH11 d5f700e98f2664b3681653] +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xfdf +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xfe5 +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0x2083eaa99cd4a294b34f5a14fdafb5df into parts=^0xfe90cdec2f75531b29219d73116bc095 ^0xe60a6c05ae73c7647e5104e0304e65d5 ^0x4450f181e6f88981d639826f70020579 ^0x7c49bac1fb2abf6a320641e8ac8815e6 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: PUSH32 15cc1956c2cc20b556d2cacb6c6ac1105674e5a363d5be58c0c04447cc1cd9cc | pc=0x0: PUSH16 2083eaa99cd4a294b34f5a14fdafb5df] after=[pc=0xfff: ADD | pc=0x1000: MSTORE | pc=0x0: PUSH32 15cc1956c2cc20b556d2cacb6c6ac1105674e5a363d5be58c0c04447cc1cd9cc | pc=0x0: PUSH16 fe90cdec2f75531b29219d73116bc095 | pc=0x11: XOR | pc=0x12: PUSH16 e60a6c05ae73c7647e5104e0304e65d5] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0x6db9485b0dda7a289f06c4ad0b97f8fc into parts=+0xe2f53760ae9b3ecb3c2e50926cfa7b19 +0x82a5ff8598b80c3492a7c7c72ed8c403 -0xece8dbfd72bca90640adbc131c961a31 -0x0af9128dc6bc27d0ef21979973a52bef +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH16 6db9485b0dda7a289f06c4ad0b97f8fc] after=[pc=0x36: PUSH16 7c49bac1fb2abf6a320641e8ac8815e6 | pc=0x47: XOR | pc=0x0: ADD | pc=0x0: PUSH16 e2f53760ae9b3ecb3c2e50926cfa7b19 | pc=0x11: ADD | pc=0x12: PUSH16 82a5ff8598b80c3492a7c7c72ed8c403] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0xfa2e9a05 into parts=^0x15434c2b ^0xef6dd62e +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: MUL | pc=0x0: PUSH4 fa2e9a05] after=[pc=0x0: PUSH1 03 | pc=0x0: MUL | pc=0x0: PUSH4 15434c2b | pc=0x5: XOR ] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0xc8a2a8dd22fba0f3924666421c959c55 into parts=+0x73bbfbca09d80b53fb5d2535e4172d3f +0xfa976b454b4c498d68ac23c34641c9cc +0x5a4f41cdcdd74c122e3d1d48f23ca54a +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: OR | pc=0x0: PUSH16 c8a2a8dd22fba0f3924666421c959c55] after=[pc=0x0: PUSH1 00 | pc=0x0: MLOAD | pc=0x0: OR | pc=0x0: PUSH16 73bbfbca09d80b53fb5d2535e4172d3f | pc=0x11: ADD | pc=0x12: PUSH16 fa976b454b4c498d68ac23c34641c9cc] +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1036 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x103c +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0xc2ac0f5169522bd8142b9c43735d2bb8 into parts=^0x4fc19089ddec2007f4634aa9fd24d91b ^0xd1f79b6194ffe11f5a462b83c19233a8 ^0x5c9a04b92041eac0ba0efd694febc10b +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: PUSH32 436f6e747261637420616c7265616479e31284bfcdb78fd8142b9c4454f0d90e | pc=0x0: PUSH16 c2ac0f5169522bd8142b9c43735d2bb8] after=[pc=0x1056: ADD | pc=0x1057: MSTORE | pc=0x0: PUSH32 436f6e747261637420616c7265616479e31284bfcdb78fd8142b9c4454f0d90e | pc=0x0: PUSH16 4fc19089ddec2007f4634aa9fd24d91b | pc=0x11: XOR | pc=0x12: PUSH16 d1f79b6194ffe11f5a462b83c19233a8] +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1082 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1088 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x10ce +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x10d4 +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0x480fe8e13dfb11634a56f6ed0585454c into parts=^0x534a8d0914ba721f9c1f2c9a85f6c31f ^0x1273008353f9c6508299a2d560199559 ^0x9aeff55dd9a4f67868cd91eb8d398cd9 ^0x93d99036a31c53543c1de9496d539fd3 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH16 480fe8e13dfb11634a56f6ed0585454c] after=[pc=0x0: DIV | pc=0x0: PUSH2 6645 | pc=0x0: ADD | pc=0x0: PUSH16 534a8d0914ba721f9c1f2c9a85f6c31f | pc=0x11: XOR | pc=0x12: PUSH16 1273008353f9c6508299a2d560199559] +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x111a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1127 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x112a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1132 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1138 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x117d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1183 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x11c9 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x11d7 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x11d8 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x11e5 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x11e6 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x11f2 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x11f3 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x11f9 +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0x70a7154d75da5752 into parts=+0xb09b6550b0b3111c -0x4a5927193ab4165e -0xf59b28ea0024a36c +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: AND | pc=0x0: PUSH8 70a7154d75da5752] after=[pc=0x0: MUL | pc=0x0: PUSH32 6f49dbf72418ef9acbfe3063ddbd7fddfdffebffdbdbffffdfdb8eef5beda67f | pc=0x0: AND | pc=0x0: PUSH8 b09b6550b0b3111c | pc=0x9: ADD | pc=0xa: PUSH8 4a5927193ab4165e] +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1236 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x123c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1282 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1294 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x12a7 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x12b4 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x12b5 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x12c5 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x12d1 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x12dd +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x12eb +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x12f9 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1307 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x130d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1353 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1359 +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0xc55beb8f into parts=+0x80d43b29 +0x4487b066 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: AND | pc=0x0: PUSH4 c55beb8f] after=[pc=0x0: PUSH32 b8fbebb7f577eedfd2a40fe7dddbf2fff6671fe3abffcdef7ff7ffffa7ffbff0 | pc=0x0: AND | pc=0x0: PUSH4 80d43b29 | pc=0x5: ADD ] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0x9c96f33b into parts=^0x90d78e9b ^0xe07a73f4 ^0xbe76adcf ^0x524da39b +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: SUB | pc=0x0: PUSH4 9c96f33b] after=[pc=0xb: ADD | pc=0x0: SWAP(1) | pc=0x0: SUB | pc=0x0: PUSH4 90d78e9b | pc=0x5: XOR | pc=0x6: PUSH4 e07a73f4] +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x139f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x13a5 +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0xe3d14b52dcab94be into parts=+0xa4d05a72816e467b -0x9cc28303eed2703d -0x243c8c1bb5f04180 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: PUSH32 d67e1fd60c59571887de9092cd995182a02b0621672578e76a66e56db420d4ec | pc=0x0: PUSH8 e3d14b52dcab94be] after=[pc=0x13bf: ADD | pc=0x13c0: MSTORE | pc=0x0: PUSH32 d67e1fd60c59571887de9092cd995182a02b0621672578e76a66e56db420d4ec | pc=0x0: PUSH8 a4d05a72816e467b | pc=0x9: ADD | pc=0xa: PUSH8 9cc28303eed2703d] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0x88d6e5a62f10211dbdf8c2886e8b7d66 into parts=^0xcb7aa8948e9e0a8892083c229d4ab7a3 ^0x43ac4d32a18e2b952ff0feaaf3c1cac5 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH16 88d6e5a62f10211dbdf8c2886e8b7d66] after=[pc=0x1d: SUB | pc=0x0: ADD | pc=0x0: PUSH16 cb7aa8948e9e0a8892083c229d4ab7a3 | pc=0x11: XOR ] +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x13eb +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x13f1 +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0xae3314b983c157d0 into parts=^0x3edd47452c305361 ^0xa9c7ce544651b9f1 ^0x39299da8e9a0bd40 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: PUSH32 4647ddb50e8ad6a6f11504319aaf4bb83d84303d14cf58881585a25b4daf3a1a | pc=0x0: PUSH8 ae3314b983c157d0] after=[pc=0x140b: ADD | pc=0x140c: MSTORE | pc=0x0: PUSH32 4647ddb50e8ad6a6f11504319aaf4bb83d84303d14cf58881585a25b4daf3a1a | pc=0x0: PUSH8 3edd47452c305361 | pc=0x9: XOR | pc=0xa: PUSH8 a9c7ce544651b9f1] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0x34d4bc9f into parts=^0xcdc15070 ^0x3258a8aa ^0x0ea80f19 ^0xc5e54b5c +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH4 34d4bc9f] after=[pc=0x14: PUSH8 39299da8e9a0bd40 | pc=0x1d: XOR | pc=0x0: ADD | pc=0x0: PUSH4 cdc15070 | pc=0x5: XOR | pc=0x6: PUSH4 3258a8aa] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0x1f81cb582509c83440bfa88bb915cd65 into parts=-0x0df779ba4da27d1de0b8bc5e4f158d96 -0xd286baed8d53baadde879b15f7d4a505 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: SUB | pc=0x0: PUSH16 1f81cb582509c83440bfa88bb915cd65] after=[pc=0x0: SWAP(1) | pc=0x0: SUB | pc=0x0: PUSH16 0df779ba4da27d1de0b8bc5e4f158d96 | pc=0x11: SUB ] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0xd03fbbd85c047a054687ba6d557e572c into parts=+0x3cf1c33323290bc5178e786127398a1b -0x0abd3cc692a8b14a229d9c22e7d0b7be -0x1e1998612d200240d4d2c6d8b6512b68 -0x43db3233075bde34d9965af833994fc9 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: XOR | pc=0x0: PUSH16 d03fbbd85c047a054687ba6d557e572c] after=[pc=0x12: PUSH16 d286baed8d53baadde879b15f7d4a505 | pc=0x23: SUB | pc=0x0: XOR | pc=0x0: PUSH16 3cf1c33323290bc5178e786127398a1b | pc=0x11: ADD | pc=0x12: PUSH16 0abd3cc692a8b14a229d9c22e7d0b7be] +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1430 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1438 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x143d +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0xe6931522350eb326 into parts=+0xb7c34f7f9560b322 -0x3f8d6f9b161baaf8 -0x91a2cac24a365504 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH8 e6931522350eb326] after=[pc=0x0: PUSH32 47616f6eef77a272e5f76574207f6e697def3066ff6e74eba5efcabe0851de5e | pc=0x0: PUSH2 1370 | pc=0x0: ADD | pc=0x0: PUSH8 b7c34f7f9560b322 | pc=0x9: ADD | pc=0xa: PUSH8 3f8d6f9b161baaf8] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0x95e03ee5ef15b097 into parts=+0x2405a5712a2634bb -0x15bfee4c71ce7383 +0xac3506be36b68813 +0xdb6581030007674c +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH8 95e03ee5ef15b097] after=[pc=0x0: SUB | pc=0x0: PUSH2 b7e7 | pc=0x0: ADD | pc=0x0: PUSH8 2405a5712a2634bb | pc=0x9: ADD | pc=0xa: PUSH8 15bfee4c71ce7383] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0xdbc9cc0f0259c6bb into parts=^0xc6f0c93987ab6e03 ^0xc81713fd6b23f41e ^0x0eabbed34475269b ^0xdb85a818aaa47a3d +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH8 dbc9cc0f0259c6bb] after=[pc=0x1e: PUSH8 db6581030007674c | pc=0x27: ADD | pc=0x0: ADD | pc=0x0: PUSH8 c6f0c93987ab6e03 | pc=0x9: XOR | pc=0xa: PUSH8 c81713fd6b23f41e] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0xbc0acbd8 into parts=+0xa781df5f -0xa2a520c1 -0x48d1f2c6 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: AND | pc=0x0: PUSH4 bc0acbd8] after=[pc=0x0: SUB | pc=0x0: PUSH32 53ffeeff6f7c357b7d7bfffffdf7f9fdee75ebeb6f7f6d34eff7f0eb1f7ff5ee | pc=0x0: AND | pc=0x0: PUSH4 a781df5f | pc=0x5: ADD | pc=0x6: PUSH4 a2a520c1] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x14ad width=4 value=0x4e487b71 into parts=+0xfd86ddcf -0x704567f2 -0xf25dfd63 -0x4c9afd09 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x14ac: JUMPDEST | pc=0x14ad: PUSH4 4e487b71] after=[pc=0x14ac: JUMPDEST | pc=0x14ad: PUSH4 fd86ddcf | pc=0x14b2: ADD | pc=0x14b3: PUSH4 704567f2 | pc=0x14b8: SUB | pc=0x14b9: PUSH4 f25dfd63] +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x14c0 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x14c7 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x14c9 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x14ce +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x14d7 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x14da +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x14e0 +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=15 value=0x109c800000480814801000a3632090 into parts=-0xc44de153ba74ac4d50ad69ee687238 -0x2b159eac45434b9e2f42956e346d38 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: AND | pc=0x0: PUSH15 109c800000480814801000a3632090] after=[pc=0x0: PUSH32 fee382e853d0e930c32808fbf9774c516a1bef995b3effce7eb124a70ffb9bfa | pc=0x0: AND | pc=0x0: PUSH15 c44de153ba74ac4d50ad69ee687238 | pc=0x10: SUB ] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0x73a584da into parts=+0x9467835a +0xdf3e0180 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: OR | pc=0x0: PUSH4 73a584da] after=[pc=0x21: SUB | pc=0x0: OR | pc=0x0: PUSH4 9467835a | pc=0x5: ADD ] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0x10511188000800001402140800025414 into parts=+0x047ff6b77e47123de021b1f658247e32 +0xadfdd66b44325cb3c164112c286a903f +0x85573386cdeb666fb5d09b22e9c7234a +0xd87c10de6fa32a9ebcabb5c295ac2259 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: SUB | pc=0x0: PUSH16 10511188000800001402140800025414] after=[pc=0x0: PUSH2 6afd | pc=0x0: SWAP(1) | pc=0x0: SUB | pc=0x0: PUSH16 047ff6b77e47123de021b1f658247e32 | pc=0x11: ADD | pc=0x12: PUSH16 adfdd66b44325cb3c164112c286a903f] +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1519 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x152b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x152c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x153e +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x153f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1551 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1552 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1564 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1565 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1575 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1576 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x157e +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1583 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x158e +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1594 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x15b5 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x15c3 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x15cb +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x15e6 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x15ed +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x160a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1610 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1615 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x161a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1624 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x162d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x163d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1647 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x165f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x166d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1676 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x167b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1689 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1690 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1699 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x169f +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0x10a3d2f0c447ad3c1cfd393e9834f262 into parts=^0x8579f77bd5f8a87b2d3834b0dbb04df1 ^0xfd277a1a80452d2fc560fb4ea561b158 ^0x480982906e6d160051f864cc777e7cc4 ^0x20f4dd01ff973e68a55d920c919b720f +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: AND | pc=0x0: PUSH16 10a3d2f0c447ad3c1cfd393e9834f262] after=[pc=0x0: PUSH32 dd4fe724d77e3c6577302a303c515ffdee9dffb7aff7479ffff31dae7e07efc4 | pc=0x0: PUSH32 fefb63ee6d3ceff15ff62ebbff73dd5be7abfeefaa976ffd7ff67cb6ea567eb7 | pc=0x0: AND | pc=0x0: PUSH16 8579f77bd5f8a87b2d3834b0dbb04df1 | pc=0x11: XOR | pc=0x12: PUSH16 fd277a1a80452d2fc560fb4ea561b158] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=15 value=0x207cc3f217f016c440f5454bf28f1c into parts=^0x153a89a3fc98bbf1c238c91cb9c3bd ^0x2776d84260152a09e9384a7822be76 ^0xff2b9b8ad09eb22d9735a205fae31f ^0xed1b09995be33511fcc0642a9311c8 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH15 207cc3f217f016c440f5454bf28f1c] after=[pc=0x36: PUSH16 20f4dd01ff973e68a55d920c919b720f | pc=0x47: XOR | pc=0x0: ADD | pc=0x0: PUSH15 153a89a3fc98bbf1c238c91cb9c3bd | pc=0x10: XOR | pc=0x11: PUSH15 2776d84260152a09e9384a7822be76] +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x16ef +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1711 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x172c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1733 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1752 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x175b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x177d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1784 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1789 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x178e +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x179c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x17a3 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x17ab +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x17c1 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x17c9 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x17cf +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x17d2 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x17d8 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1814 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x181a +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0x24d5e0fbccfe24b92bcab1802cd6f3f8 into parts=+0x21171abf88613e2a01946e4fe77981d6 +0x03bec63c449ce68f2a364330455d7222 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: SUB | pc=0x0: PUSH16 24d5e0fbccfe24b92bcab1802cd6f3f8] after=[pc=0x0: SWAP(1) | pc=0x0: SUB | pc=0x0: PUSH16 21171abf88613e2a01946e4fe77981d6 | pc=0x11: ADD ] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0x61e99d534dfbd974 into parts=^0xa6f752de11baaba3 ^0x9a621aeac7cdadfb ^0x5d7cd5679b8cdf2c +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: AND | pc=0x0: PUSH8 61e99d534dfbd974] after=[pc=0x0: ADD | pc=0x0: PUSH32 5fae7d1ab2a311c77de3ee6916332142fa7bfdff3fea5d37efeffbfcffdefd6f | pc=0x0: AND | pc=0x0: PUSH8 a6f752de11baaba3 | pc=0x9: XOR | pc=0xa: PUSH8 9a621aeac7cdadfb] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=15 value=0x10a040164612420606e67422010484 into parts=-0xb43697fe2861de2cd90553215a3b84 -0x3b2927eb918bdfcd201438bca4bff8 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: DIV | pc=0x0: PUSH15 10a040164612420606e67422010484] after=[pc=0x0: SWAP(1) | pc=0x0: DIV | pc=0x0: PUSH15 b43697fe2861de2cd90553215a3b84 | pc=0x10: SUB ] +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1853 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1866 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x186b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1883 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x188b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x18a1 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x18a8 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x18ca +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x18d3 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x18ec +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x18f3 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x190a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1910 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1931 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1939 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1944 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1953 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x195b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1966 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x196c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x197a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1985 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1990 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1997 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x19a0 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x19b5 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x19bc +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x19c2 +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0xc1f1f9be into parts=+0xb499b2de +0x354b71c9 +0x7135c3b5 +0x66d71162 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: AND | pc=0x0: PUSH4 c1f1f9be] after=[pc=0x0: PUSH32 524e582a6f6e667367f4287f7ffda47fe738e2ef7d6e6cf36023f000d9fff9be | pc=0x0: PUSH32 fffcd2f5ef77ff7b7d75a6ef75766a6f6e26737ff5ffe77f9f900f3dc5f1ffff | pc=0x0: AND | pc=0x0: PUSH4 b499b2de | pc=0x5: ADD | pc=0x6: PUSH4 354b71c9] +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a08 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a15 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a26 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a35 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a41 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a4e +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a63 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a69 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a76 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a8b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a93 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1aa6 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1aab +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1aba +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1ad3 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1ada +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1ae4 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1af0 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b04 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b0a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b1e +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b26 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b39 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b48 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b61 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b6b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b7c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b8d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b9e +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1baf +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1bb9 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1bc6 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1bd7 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1be1 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1bec +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1bfd +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c0c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c17 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c30 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c37 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c48 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c54 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c61 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c69 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c75 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c8b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c92 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c9e +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1ca5 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1cae +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1cbe +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1cc6 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1cd2 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1cda +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1cea +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1d04 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1d10 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1d17 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1d37 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1d3e +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0x831021594741f0c2 into parts=+0xed7eb3f2b09df3d2 +0xb177bfc56f5f1ab2 +0xde8d6f9632d53169 +0x058c3e0af46fb0d5 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: PUSH32 457870656374656420737472696e67206974656d2c2067704cc5ac7213e8d27e | pc=0x0: PUSH8 831021594741f0c2] after=[pc=0x1d5f: ADD | pc=0x1d60: MSTORE | pc=0x0: PUSH32 457870656374656420737472696e67206974656d2c2067704cc5ac7213e8d27e | pc=0x0: PUSH8 ed7eb3f2b09df3d2 | pc=0x9: ADD | pc=0xa: PUSH8 b177bfc56f5f1ab2] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0x3896aa66 into parts=+0xefb71aa3 +0x282f7b45 +0x20b0147e +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH4 3896aa66] after=[pc=0x1e: PUSH8 058c3e0af46fb0d5 | pc=0x27: ADD | pc=0x0: ADD | pc=0x0: PUSH4 efb71aa3 | pc=0x5: ADD | pc=0x6: PUSH4 282f7b45] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0xe60e642c6645b754 into parts=^0xf372fbd4ed26d8fa ^0x157c9ff88b636fae +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH8 e60e642c6645b754] after=[pc=0x11: ADD | pc=0x0: ADD | pc=0x0: PUSH8 f372fbd4ed26d8fa | pc=0x9: XOR ] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0x75a6fd35ba07b652 into parts=+0x55312f57fd49bd0d +0x871f88fb91284ef2 -0x41e35209c57106a5 -0x24c669140ef94f08 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: SUB | pc=0x0: PUSH8 75a6fd35ba07b652] after=[pc=0x13: XOR | pc=0x0: SWAP(1) | pc=0x0: SUB | pc=0x0: PUSH8 55312f57fd49bd0d | pc=0x9: ADD | pc=0xa: PUSH8 871f88fb91284ef2] +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1d8b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1d91 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1de1 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e05 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e0d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e28 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e2f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e47 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e53 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e5b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e65 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e77 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e7c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e83 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e91 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1ea4 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1eb1 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1eb7 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1ecf +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1ed6 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1ee0 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1ee9 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1ef2 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1efa +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f02 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f0b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f17 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f22 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f30 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f3b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f43 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f49 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f4f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f5b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f74 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f79 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f83 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f89 +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x1fa5 width=15 value=0x0496e76616c6964206c6f6720524c5 into parts=+0xf3a78face89c5563a9c9bf82fc8cf2 +0x10ef57b92e2a40de5cfd36ef0897d3 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x1fa4: MSTORE | pc=0x1fa5: PUSH15 0496e76616c6964206c6f6720524c5] after=[pc=0x1fa3: ADD | pc=0x1fa4: MSTORE | pc=0x1fa5: PUSH15 f3a78face89c5563a9c9bf82fc8cf2 | pc=0x1fb5: ADD ] +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1fc1 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1fc7 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x200d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2013 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2050 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x207b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2083 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2098 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x209f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x20be +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x20c9 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x20d7 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x20ec +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x20f2 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x20ff +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2105 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2111 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2121 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2130 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x213a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2149 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2155 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2162 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x216a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2175 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x218b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2191 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x219d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x21a4 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x21ad +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x21bc +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x21c4 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x21d0 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x21d8 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x21e7 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2201 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x220d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2214 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2234 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x223a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2242 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x224e +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x225b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2263 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2269 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x227c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2288 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2292 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x229c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x22a5 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x22af +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x22b8 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x22c0 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x22c5 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x22da +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x22db +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x22e9 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x22ff +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2308 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2311 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x231c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2326 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x232c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x233b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2347 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x234f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2355 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2362 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2368 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x237e +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2386 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2391 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2398 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x23a2 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x23aa +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x23bb +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x23c0 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x23cc +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x23e5 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x23ec +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x23f4 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x23fb +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2408 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2414 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2421 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x242f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2437 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x244b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2451 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2465 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2470 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x247a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2484 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2490 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x249b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x24a5 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x24b0 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x24c4 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x24d0 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x24e2 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x24eb +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x24f4 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x250c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2513 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x251c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x252d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2536 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2544 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2559 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2560 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x256a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2573 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x257c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2592 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x259e +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x25ea +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x25f0 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x262b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2631 +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0x4ab91fe3 into parts=+0x504dbcab +0xfa6b6338 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH4 4ab91fe3] after=[pc=0x0: PUSH2 873c | pc=0x0: ADD | pc=0x0: PUSH4 504dbcab | pc=0x5: ADD ] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0x088b6de581b00c74 into parts=+0x47194acd5891b72d +0x27729041c4c136a1 -0x2471bd531c712cc8 -0x418eafd67f31b492 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: SUB | pc=0x0: PUSH8 088b6de581b00c74] after=[pc=0xb: ADD | pc=0x0: SWAP(1) | pc=0x0: SUB | pc=0x0: PUSH8 47194acd5891b72d | pc=0x9: ADD | pc=0xa: PUSH8 27729041c4c136a1] +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0x3028550830d849650d15de8c0bff9863 into parts=+0xe2bcda79036f3be04f406990e92120ca -0xac1bbc213f69fc9ef5dbdda2617e7495 -0x0678c94f932cf5dc4c4ead627ba313d2 +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: AND | pc=0x0: PUSH16 3028550830d849650d15de8c0bff9863] after=[pc=0x0: ADD | pc=0x0: PUSH32 12478dabdac12bcb3486df777b7f7ee778eda36dffaffb57ef7afded7fceef77 | pc=0x0: AND | pc=0x0: PUSH16 e2bcda79036f3be04f406990e92120ca | pc=0x11: ADD | pc=0x12: PUSH16 ac1bbc213f69fc9ef5dbdda2617e7495] +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x266f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2675 +DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0x46ecfba0 into parts=+0xe29621a9 -0x3e229d07 +0xbfe915f4 +0xe290610a +DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: XOR | pc=0x0: PUSH4 46ecfba0] after=[pc=0x0: SUB | pc=0x0: PUSH2 37af | pc=0x0: XOR | pc=0x0: PUSH4 e29621a9 | pc=0x5: ADD | pc=0x6: PUSH4 3e229d07] +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x26b1 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x26b7 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x26f4 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x26fa +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2740 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x27ad +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x27b5 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x27bc +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x27c3 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x27e0 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x27e8 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x27ee +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x27f5 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x27fc +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2803 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x280f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2822 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2829 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x282f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2842 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x284c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2864 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x286d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x287c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2881 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x288b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2898 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x28a8 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x28b7 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x28bf +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x28c9 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x28da +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x28e4 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x28f7 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x28ff +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x290e +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x291d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2936 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x293c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2946 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x294f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x295f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2972 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x297a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2989 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2998 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x29b1 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x29bb +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x29c4 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x29d2 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x29dc +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x29eb +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x29f0 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x29f5 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a0e +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a18 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a30 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a39 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a49 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a58 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a62 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a78 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a89 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a95 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a9c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2aa1 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2ab2 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2aba +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2ac4 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2adc +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2aeb +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2af0 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b06 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b18 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b1f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b21 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b2f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b39 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b40 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b4a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b56 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b5c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b61 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b79 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b7f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b85 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b9a +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2ba2 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2ba9 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2bb1 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2bc9 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2bcf +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2bd8 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2bdf +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2bfd +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2c05 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2c51 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2c5c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2c6d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2c7c +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2c87 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2c98 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2ca4 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2cb1 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2cb9 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2cc5 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2cdb +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2ce7 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2cee +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2cf7 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2d07 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2d0f +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2d1b +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2d23 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2d33 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2d4d +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2d59 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2d60 +DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2d80 +DEBUG azoth_transform::push_split: PushSplit: applied splits +DEBUG azoth_transform::obfuscator: Result: changed=true +DEBUG azoth_transform::obfuscator: Post: 851 blocks (+0), 7358 instructions (+261) +DEBUG azoth_transform::obfuscator: Transform 3: SlotShuffle (pre: 851 blocks, 7358 instructions) +DEBUG azoth_transform::slot_shuffle: SlotShuffle: placeholder apply (no-op) +DEBUG azoth_transform::obfuscator: Result: changed=false +DEBUG azoth_transform::obfuscator: Post: 851 blocks (+0), 7358 instructions (+0) +DEBUG azoth_transform::obfuscator: Transform 4: StringObfuscate (pre: 851 blocks, 7358 instructions) +DEBUG azoth_transform::string_obfuscate: StringObfuscate: scanning for Error(string) literals +DEBUG azoth_transform::string_obfuscate: StringObfuscate: structural detection found 1 chunk(s) (length=29) +DEBUG azoth_transform::string_obfuscate: StringObfuscate: heuristic detection found string at idx 18 (PC 0xeba) +DEBUG azoth_transform::string_obfuscate: StringObfuscate: heuristic detection found string at idx 18 (PC 0x0) +DEBUG azoth_transform::string_obfuscate: StringObfuscate: structural detection found 1 chunk(s) (length=30) +DEBUG azoth_transform::string_obfuscate: StringObfuscate: heuristic detection found string at idx 18 (PC 0x0) +DEBUG azoth_transform::string_obfuscate: StringObfuscate: structural detection found 1 chunk(s) (length=32) +DEBUG azoth_transform::string_obfuscate: StringObfuscate: structural detection found 1 chunk(s) (length=29) +DEBUG azoth_transform::string_obfuscate: StringObfuscate: structural detection found 1 chunk(s) (length=29) +DEBUG azoth_transform::string_obfuscate: StringObfuscate: structural detection found 1 chunk(s) (length=26) +DEBUG azoth_transform::string_obfuscate: StringObfuscate: heuristic detection found string at idx 24 (PC 0x12) +DEBUG azoth_transform::string_obfuscate: StringObfuscate: heuristic detection found string at idx 18 (PC 0x0) +DEBUG azoth_transform::string_obfuscate: StringObfuscate: structural detection found 1 chunk(s) (length=30) +DEBUG azoth_transform::string_obfuscate: StringObfuscate: heuristic detection found string at idx 18 (PC 0x26d3) +DEBUG azoth_transform::string_obfuscate: StringObfuscate: structural detection found 1 chunk(s) (length=24) +DEBUG azoth_transform::string_obfuscate: StringObfuscate: structural detection found 1 chunk(s) (length=23) +DEBUG azoth_transform::string_obfuscate: StringObfuscate: heuristic detection found string at idx 18 (PC 0x0) +DEBUG azoth_transform::string_obfuscate: StringObfuscate: obfuscated Error(string) literals +DEBUG azoth_transform::obfuscator: Result: changed=true +DEBUG azoth_transform::obfuscator: Post: 851 blocks (+0), 7358 instructions (+0) +DEBUG azoth_transform::obfuscator: Transform summary: +DEBUG azoth_transform::obfuscator: Any transform changed: true +DEBUG azoth_transform::obfuscator: Final blocks: 851 (+76) +DEBUG azoth_transform::obfuscator: Final instructions: 7358 (+1094) +DEBUG azoth_transform::obfuscator: FunctionDispatcher: changed=true, blocks_delta=+76, instructions_delta=+473 +DEBUG azoth_transform::obfuscator: ArithmeticChain: changed=true, blocks_delta=+0, instructions_delta=+360 +DEBUG azoth_transform::obfuscator: PushSplit: changed=true, blocks_delta=+0, instructions_delta=+261 +DEBUG azoth_transform::obfuscator: SlotShuffle: changed=false, blocks_delta=+0, instructions_delta=+0 +DEBUG azoth_transform::obfuscator: StringObfuscate: changed=true, blocks_delta=+0, instructions_delta=+0 +DEBUG azoth_transform::obfuscator: Reindexing PCs to normalize to 0-based addressing +DEBUG azoth_core::cfg_ir: Reindexed block 2: old start_pc=0x2ef -> new start_pc=0x0 +DEBUG azoth_core::cfg_ir: Reindexed block 3: old start_pc=0x2fd -> new start_pc=0xe +DEBUG azoth_core::cfg_ir: Reindexed block 4: old start_pc=0x300 -> new start_pc=0x11 +DEBUG azoth_core::cfg_ir: Reindexed block 5: old start_pc=0x311 -> new start_pc=0x22 +DEBUG azoth_core::cfg_ir: Reindexed block 6: old start_pc=0x31c -> new start_pc=0x2d +DEBUG azoth_core::cfg_ir: Reindexed block 7: old start_pc=0x327 -> new start_pc=0x38 +DEBUG azoth_core::cfg_ir: Reindexed block 8: old start_pc=0x332 -> new start_pc=0x43 +DEBUG azoth_core::cfg_ir: Reindexed block 9: old start_pc=0x33d -> new start_pc=0x4e +DEBUG azoth_core::cfg_ir: Reindexed block 10: old start_pc=0x348 -> new start_pc=0x59 +DEBUG azoth_core::cfg_ir: Reindexed block 11: old start_pc=0x353 -> new start_pc=0x64 +DEBUG azoth_core::cfg_ir: Reindexed block 12: old start_pc=0x35e -> new start_pc=0x6f +DEBUG azoth_core::cfg_ir: Reindexed block 13: old start_pc=0x369 -> new start_pc=0x7a +DEBUG azoth_core::cfg_ir: Reindexed block 14: old start_pc=0x374 -> new start_pc=0x85 +DEBUG azoth_core::cfg_ir: Reindexed block 15: old start_pc=0x37f -> new start_pc=0x90 +DEBUG azoth_core::cfg_ir: Reindexed block 16: old start_pc=0x38a -> new start_pc=0x9b +DEBUG azoth_core::cfg_ir: Reindexed block 17: old start_pc=0x395 -> new start_pc=0xa6 +DEBUG azoth_core::cfg_ir: Reindexed block 18: old start_pc=0x3a0 -> new start_pc=0xb1 +DEBUG azoth_core::cfg_ir: Reindexed block 19: old start_pc=0x3ab -> new start_pc=0xbc +DEBUG azoth_core::cfg_ir: Reindexed block 20: old start_pc=0x3b6 -> new start_pc=0xc7 +DEBUG azoth_core::cfg_ir: Reindexed block 21: old start_pc=0x3c1 -> new start_pc=0xd2 +DEBUG azoth_core::cfg_ir: Reindexed block 22: old start_pc=0x3cc -> new start_pc=0xdd +DEBUG azoth_core::cfg_ir: Reindexed block 23: old start_pc=0x3d6 -> new start_pc=0xe7 +DEBUG azoth_core::cfg_ir: Reindexed block 24: old start_pc=0x3d9 -> new start_pc=0xea +DEBUG azoth_core::cfg_ir: Reindexed block 25: old start_pc=0x3de -> new start_pc=0xef +DEBUG azoth_core::cfg_ir: Reindexed block 26: old start_pc=0x3e3 -> new start_pc=0xf4 +DEBUG azoth_core::cfg_ir: Reindexed block 27: old start_pc=0x3e8 -> new start_pc=0xf9 +DEBUG azoth_core::cfg_ir: Reindexed block 28: old start_pc=0x3ed -> new start_pc=0xfe +DEBUG azoth_core::cfg_ir: Reindexed block 29: old start_pc=0x3f2 -> new start_pc=0x103 +DEBUG azoth_core::cfg_ir: Reindexed block 30: old start_pc=0x3f7 -> new start_pc=0x108 +DEBUG azoth_core::cfg_ir: Reindexed block 31: old start_pc=0x3fc -> new start_pc=0x10d +DEBUG azoth_core::cfg_ir: Reindexed block 32: old start_pc=0x401 -> new start_pc=0x112 +DEBUG azoth_core::cfg_ir: Reindexed block 33: old start_pc=0x406 -> new start_pc=0x117 +DEBUG azoth_core::cfg_ir: Reindexed block 34: old start_pc=0x40b -> new start_pc=0x11c +DEBUG azoth_core::cfg_ir: Reindexed block 35: old start_pc=0x410 -> new start_pc=0x121 +DEBUG azoth_core::cfg_ir: Reindexed block 36: old start_pc=0x415 -> new start_pc=0x126 +DEBUG azoth_core::cfg_ir: Reindexed block 37: old start_pc=0x41a -> new start_pc=0x12b +DEBUG azoth_core::cfg_ir: Reindexed block 38: old start_pc=0x41f -> new start_pc=0x130 +DEBUG azoth_core::cfg_ir: Reindexed block 39: old start_pc=0x424 -> new start_pc=0x135 +DEBUG azoth_core::cfg_ir: Reindexed block 40: old start_pc=0x429 -> new start_pc=0x13a +DEBUG azoth_core::cfg_ir: Reindexed block 41: old start_pc=0x42e -> new start_pc=0x13f +DEBUG azoth_core::cfg_ir: Reindexed block 42: old start_pc=0x433 -> new start_pc=0x144 +DEBUG azoth_core::cfg_ir: Reindexed block 43: old start_pc=0x439 -> new start_pc=0x14a +DEBUG azoth_core::cfg_ir: Reindexed block 44: old start_pc=0x444 -> new start_pc=0x155 +DEBUG azoth_core::cfg_ir: Reindexed block 45: old start_pc=0x477 -> new start_pc=0x188 +DEBUG azoth_core::cfg_ir: Reindexed block 46: old start_pc=0x483 -> new start_pc=0x194 +DEBUG azoth_core::cfg_ir: Reindexed block 47: old start_pc=0x487 -> new start_pc=0x198 +DEBUG azoth_core::cfg_ir: Reindexed block 48: old start_pc=0x48d -> new start_pc=0x19e +DEBUG azoth_core::cfg_ir: Reindexed block 49: old start_pc=0x498 -> new start_pc=0x1a9 +DEBUG azoth_core::cfg_ir: Reindexed block 50: old start_pc=0x4af -> new start_pc=0x1c0 +DEBUG azoth_core::cfg_ir: Reindexed block 51: old start_pc=0x4b5 -> new start_pc=0x1c6 +DEBUG azoth_core::cfg_ir: Reindexed block 52: old start_pc=0x4c0 -> new start_pc=0x1d1 +DEBUG azoth_core::cfg_ir: Reindexed block 53: old start_pc=0x4e9 -> new start_pc=0x1fa +DEBUG azoth_core::cfg_ir: Reindexed block 54: old start_pc=0x4ef -> new start_pc=0x200 +DEBUG azoth_core::cfg_ir: Reindexed block 55: old start_pc=0x4fa -> new start_pc=0x20b +DEBUG azoth_core::cfg_ir: Reindexed block 56: old start_pc=0x50b -> new start_pc=0x21c +DEBUG azoth_core::cfg_ir: Reindexed block 57: old start_pc=0x511 -> new start_pc=0x222 +DEBUG azoth_core::cfg_ir: Reindexed block 58: old start_pc=0x51c -> new start_pc=0x22d +DEBUG azoth_core::cfg_ir: Reindexed block 59: old start_pc=0x528 -> new start_pc=0x239 +DEBUG azoth_core::cfg_ir: Reindexed block 60: old start_pc=0x52e -> new start_pc=0x23f +DEBUG azoth_core::cfg_ir: Reindexed block 61: old start_pc=0x539 -> new start_pc=0x24a +DEBUG azoth_core::cfg_ir: Reindexed block 62: old start_pc=0x54d -> new start_pc=0x25e +DEBUG azoth_core::cfg_ir: Reindexed block 63: old start_pc=0x556 -> new start_pc=0x267 +DEBUG azoth_core::cfg_ir: Reindexed block 64: old start_pc=0x588 -> new start_pc=0x299 +DEBUG azoth_core::cfg_ir: Reindexed block 65: old start_pc=0x590 -> new start_pc=0x2a1 +DEBUG azoth_core::cfg_ir: Reindexed block 66: old start_pc=0x598 -> new start_pc=0x2a9 +DEBUG azoth_core::cfg_ir: Reindexed block 67: old start_pc=0x5ac -> new start_pc=0x2bd +DEBUG azoth_core::cfg_ir: Reindexed block 68: old start_pc=0x5bc -> new start_pc=0x2cd +DEBUG azoth_core::cfg_ir: Reindexed block 69: old start_pc=0x5c5 -> new start_pc=0x2d6 +DEBUG azoth_core::cfg_ir: Reindexed block 70: old start_pc=0x5d3 -> new start_pc=0x2e4 +DEBUG azoth_core::cfg_ir: Reindexed block 71: old start_pc=0x5fa -> new start_pc=0x30b +DEBUG azoth_core::cfg_ir: Reindexed block 72: old start_pc=0x630 -> new start_pc=0x341 +DEBUG azoth_core::cfg_ir: Reindexed block 73: old start_pc=0x634 -> new start_pc=0x345 +DEBUG azoth_core::cfg_ir: Reindexed block 74: old start_pc=0x635 -> new start_pc=0x346 +DEBUG azoth_core::cfg_ir: Reindexed block 75: old start_pc=0x644 -> new start_pc=0x355 +DEBUG azoth_core::cfg_ir: Reindexed block 76: old start_pc=0x64e -> new start_pc=0x35f +DEBUG azoth_core::cfg_ir: Reindexed block 77: old start_pc=0x656 -> new start_pc=0x367 +DEBUG azoth_core::cfg_ir: Reindexed block 78: old start_pc=0x658 -> new start_pc=0x369 +DEBUG azoth_core::cfg_ir: Reindexed block 79: old start_pc=0x65f -> new start_pc=0x370 +DEBUG azoth_core::cfg_ir: Reindexed block 80: old start_pc=0x664 -> new start_pc=0x375 +DEBUG azoth_core::cfg_ir: Reindexed block 81: old start_pc=0x66a -> new start_pc=0x37b +DEBUG azoth_core::cfg_ir: Reindexed block 82: old start_pc=0x675 -> new start_pc=0x386 +DEBUG azoth_core::cfg_ir: Reindexed block 83: old start_pc=0x680 -> new start_pc=0x391 +DEBUG azoth_core::cfg_ir: Reindexed block 84: old start_pc=0x686 -> new start_pc=0x397 +DEBUG azoth_core::cfg_ir: Reindexed block 85: old start_pc=0x691 -> new start_pc=0x3a2 +DEBUG azoth_core::cfg_ir: Reindexed block 86: old start_pc=0x69d -> new start_pc=0x3ae +DEBUG azoth_core::cfg_ir: Reindexed block 87: old start_pc=0x6a3 -> new start_pc=0x3b4 +DEBUG azoth_core::cfg_ir: Reindexed block 88: old start_pc=0x6ae -> new start_pc=0x3bf +DEBUG azoth_core::cfg_ir: Reindexed block 89: old start_pc=0x6e1 -> new start_pc=0x3f2 +DEBUG azoth_core::cfg_ir: Reindexed block 90: old start_pc=0x6f0 -> new start_pc=0x401 +DEBUG azoth_core::cfg_ir: Reindexed block 91: old start_pc=0x6f6 -> new start_pc=0x407 +DEBUG azoth_core::cfg_ir: Reindexed block 92: old start_pc=0x701 -> new start_pc=0x412 +DEBUG azoth_core::cfg_ir: Reindexed block 93: old start_pc=0x734 -> new start_pc=0x445 +DEBUG azoth_core::cfg_ir: Reindexed block 94: old start_pc=0x73a -> new start_pc=0x44b +DEBUG azoth_core::cfg_ir: Reindexed block 95: old start_pc=0x745 -> new start_pc=0x456 +DEBUG azoth_core::cfg_ir: Reindexed block 96: old start_pc=0x751 -> new start_pc=0x462 +DEBUG azoth_core::cfg_ir: Reindexed block 97: old start_pc=0x757 -> new start_pc=0x468 +DEBUG azoth_core::cfg_ir: Reindexed block 98: old start_pc=0x763 -> new start_pc=0x474 +DEBUG azoth_core::cfg_ir: Reindexed block 99: old start_pc=0x782 -> new start_pc=0x493 +DEBUG azoth_core::cfg_ir: Reindexed block 100: old start_pc=0x787 -> new start_pc=0x498 +DEBUG azoth_core::cfg_ir: Reindexed block 101: old start_pc=0x78d -> new start_pc=0x49e +DEBUG azoth_core::cfg_ir: Reindexed block 102: old start_pc=0x791 -> new start_pc=0x4a2 +DEBUG azoth_core::cfg_ir: Reindexed block 103: old start_pc=0x796 -> new start_pc=0x4a7 +DEBUG azoth_core::cfg_ir: Reindexed block 104: old start_pc=0x7a5 -> new start_pc=0x4b6 +DEBUG azoth_core::cfg_ir: Reindexed block 105: old start_pc=0x7ad -> new start_pc=0x4be +DEBUG azoth_core::cfg_ir: Reindexed block 106: old start_pc=0x7ba -> new start_pc=0x4cb +DEBUG azoth_core::cfg_ir: Reindexed block 107: old start_pc=0x7c0 -> new start_pc=0x4d1 +DEBUG azoth_core::cfg_ir: Reindexed block 108: old start_pc=0x7cf -> new start_pc=0x4e0 +DEBUG azoth_core::cfg_ir: Reindexed block 109: old start_pc=0x7d4 -> new start_pc=0x4e5 +DEBUG azoth_core::cfg_ir: Reindexed block 110: old start_pc=0x830 -> new start_pc=0x541 +DEBUG azoth_core::cfg_ir: Reindexed block 111: old start_pc=0x838 -> new start_pc=0x549 +DEBUG azoth_core::cfg_ir: Reindexed block 112: old start_pc=0x857 -> new start_pc=0x568 +DEBUG azoth_core::cfg_ir: Reindexed block 113: old start_pc=0x85c -> new start_pc=0x56d +DEBUG azoth_core::cfg_ir: Reindexed block 114: old start_pc=0x861 -> new start_pc=0x572 +DEBUG azoth_core::cfg_ir: Reindexed block 115: old start_pc=0x870 -> new start_pc=0x581 +DEBUG azoth_core::cfg_ir: Reindexed block 116: old start_pc=0x879 -> new start_pc=0x58a +DEBUG azoth_core::cfg_ir: Reindexed block 117: old start_pc=0x87e -> new start_pc=0x58f +DEBUG azoth_core::cfg_ir: Reindexed block 118: old start_pc=0x88a -> new start_pc=0x59b +DEBUG azoth_core::cfg_ir: Reindexed block 119: old start_pc=0x89d -> new start_pc=0x5ae +DEBUG azoth_core::cfg_ir: Reindexed block 120: old start_pc=0x8a2 -> new start_pc=0x5b3 +DEBUG azoth_core::cfg_ir: Reindexed block 121: old start_pc=0x8aa -> new start_pc=0x5bb +DEBUG azoth_core::cfg_ir: Reindexed block 122: old start_pc=0x8b0 -> new start_pc=0x5c1 +DEBUG azoth_core::cfg_ir: Reindexed block 123: old start_pc=0x8ba -> new start_pc=0x5cb +DEBUG azoth_core::cfg_ir: Reindexed block 124: old start_pc=0x8c0 -> new start_pc=0x5d1 +DEBUG azoth_core::cfg_ir: Reindexed block 125: old start_pc=0x8cc -> new start_pc=0x5dd +DEBUG azoth_core::cfg_ir: Reindexed block 126: old start_pc=0x90b -> new start_pc=0x61c +DEBUG azoth_core::cfg_ir: Reindexed block 127: old start_pc=0x921 -> new start_pc=0x632 +DEBUG azoth_core::cfg_ir: Reindexed block 128: old start_pc=0x926 -> new start_pc=0x637 +DEBUG azoth_core::cfg_ir: Reindexed block 129: old start_pc=0x931 -> new start_pc=0x642 +DEBUG azoth_core::cfg_ir: Reindexed block 130: old start_pc=0x93c -> new start_pc=0x64d +DEBUG azoth_core::cfg_ir: Reindexed block 131: old start_pc=0x944 -> new start_pc=0x655 +DEBUG azoth_core::cfg_ir: Reindexed block 132: old start_pc=0x949 -> new start_pc=0x65a +DEBUG azoth_core::cfg_ir: Reindexed block 133: old start_pc=0x95d -> new start_pc=0x66e +DEBUG azoth_core::cfg_ir: Reindexed block 134: old start_pc=0x98a -> new start_pc=0x69b +DEBUG azoth_core::cfg_ir: Reindexed block 135: old start_pc=0x9c0 -> new start_pc=0x6d1 +DEBUG azoth_core::cfg_ir: Reindexed block 136: old start_pc=0x9c4 -> new start_pc=0x6d5 +DEBUG azoth_core::cfg_ir: Reindexed block 137: old start_pc=0x9d8 -> new start_pc=0x6e9 +DEBUG azoth_core::cfg_ir: Reindexed block 138: old start_pc=0x9e7 -> new start_pc=0x6f8 +DEBUG azoth_core::cfg_ir: Reindexed block 139: old start_pc=0x9f0 -> new start_pc=0x701 +DEBUG azoth_core::cfg_ir: Reindexed block 140: old start_pc=0x9f5 -> new start_pc=0x706 +DEBUG azoth_core::cfg_ir: Reindexed block 141: old start_pc=0x9fb -> new start_pc=0x70c +DEBUG azoth_core::cfg_ir: Reindexed block 142: old start_pc=0xa06 -> new start_pc=0x717 +DEBUG azoth_core::cfg_ir: Reindexed block 143: old start_pc=0xa0f -> new start_pc=0x720 +DEBUG azoth_core::cfg_ir: Reindexed block 144: old start_pc=0xa19 -> new start_pc=0x72a +DEBUG azoth_core::cfg_ir: Reindexed block 145: old start_pc=0xa1f -> new start_pc=0x730 +DEBUG azoth_core::cfg_ir: Reindexed block 146: old start_pc=0xa2a -> new start_pc=0x73b +DEBUG azoth_core::cfg_ir: Reindexed block 147: old start_pc=0xa36 -> new start_pc=0x747 +DEBUG azoth_core::cfg_ir: Reindexed block 148: old start_pc=0xa3c -> new start_pc=0x74d +DEBUG azoth_core::cfg_ir: Reindexed block 149: old start_pc=0xa47 -> new start_pc=0x758 +DEBUG azoth_core::cfg_ir: Reindexed block 150: old start_pc=0xa70 -> new start_pc=0x781 +DEBUG azoth_core::cfg_ir: Reindexed block 151: old start_pc=0xa76 -> new start_pc=0x787 +DEBUG azoth_core::cfg_ir: Reindexed block 152: old start_pc=0xa82 -> new start_pc=0x793 +DEBUG azoth_core::cfg_ir: Reindexed block 153: old start_pc=0xa94 -> new start_pc=0x7a5 +DEBUG azoth_core::cfg_ir: Reindexed block 154: old start_pc=0xaa7 -> new start_pc=0x7b8 +DEBUG azoth_core::cfg_ir: Reindexed block 155: old start_pc=0xacf -> new start_pc=0x7e0 +DEBUG azoth_core::cfg_ir: Reindexed block 156: old start_pc=0xae9 -> new start_pc=0x7fa +DEBUG azoth_core::cfg_ir: Reindexed block 157: old start_pc=0xaf2 -> new start_pc=0x803 +DEBUG azoth_core::cfg_ir: Reindexed block 158: old start_pc=0xafe -> new start_pc=0x80f +DEBUG azoth_core::cfg_ir: Reindexed block 159: old start_pc=0xb0b -> new start_pc=0x81c +DEBUG azoth_core::cfg_ir: Reindexed block 160: old start_pc=0xb33 -> new start_pc=0x844 +DEBUG azoth_core::cfg_ir: Reindexed block 161: old start_pc=0xb43 -> new start_pc=0x854 +DEBUG azoth_core::cfg_ir: Reindexed block 162: old start_pc=0xb50 -> new start_pc=0x861 +DEBUG azoth_core::cfg_ir: Reindexed block 163: old start_pc=0xb57 -> new start_pc=0x868 +DEBUG azoth_core::cfg_ir: Reindexed block 164: old start_pc=0xb63 -> new start_pc=0x874 +DEBUG azoth_core::cfg_ir: Reindexed block 165: old start_pc=0xb70 -> new start_pc=0x881 +DEBUG azoth_core::cfg_ir: Reindexed block 166: old start_pc=0xb76 -> new start_pc=0x887 +DEBUG azoth_core::cfg_ir: Reindexed block 167: old start_pc=0xb7c -> new start_pc=0x88d +DEBUG azoth_core::cfg_ir: Reindexed block 168: old start_pc=0xb89 -> new start_pc=0x89a +DEBUG azoth_core::cfg_ir: Reindexed block 169: old start_pc=0xb8f -> new start_pc=0x8a0 +DEBUG azoth_core::cfg_ir: Reindexed block 170: old start_pc=0xba5 -> new start_pc=0x8b6 +DEBUG azoth_core::cfg_ir: Reindexed block 171: old start_pc=0xbb9 -> new start_pc=0x8ca +DEBUG azoth_core::cfg_ir: Reindexed block 172: old start_pc=0xbc3 -> new start_pc=0x8d4 +DEBUG azoth_core::cfg_ir: Reindexed block 173: old start_pc=0xbcb -> new start_pc=0x8dc +DEBUG azoth_core::cfg_ir: Reindexed block 174: old start_pc=0xbd0 -> new start_pc=0x8e1 +DEBUG azoth_core::cfg_ir: Reindexed block 175: old start_pc=0xbd5 -> new start_pc=0x8e6 +DEBUG azoth_core::cfg_ir: Reindexed block 176: old start_pc=0xc47 -> new start_pc=0x958 +DEBUG azoth_core::cfg_ir: Reindexed block 177: old start_pc=0xc4c -> new start_pc=0x95d +DEBUG azoth_core::cfg_ir: Reindexed block 178: old start_pc=0xc5d -> new start_pc=0x96e +DEBUG azoth_core::cfg_ir: Reindexed block 179: old start_pc=0xc66 -> new start_pc=0x977 +DEBUG azoth_core::cfg_ir: Reindexed block 180: old start_pc=0xc80 -> new start_pc=0x991 +DEBUG azoth_core::cfg_ir: Reindexed block 181: old start_pc=0xc89 -> new start_pc=0x99a +DEBUG azoth_core::cfg_ir: Reindexed block 182: old start_pc=0xc99 -> new start_pc=0x9aa +DEBUG azoth_core::cfg_ir: Reindexed block 183: old start_pc=0xca2 -> new start_pc=0x9b3 +DEBUG azoth_core::cfg_ir: Reindexed block 184: old start_pc=0xcd9 -> new start_pc=0x9ea +DEBUG azoth_core::cfg_ir: Reindexed block 185: old start_pc=0xced -> new start_pc=0x9fe +DEBUG azoth_core::cfg_ir: Reindexed block 186: old start_pc=0xcf1 -> new start_pc=0xa02 +DEBUG azoth_core::cfg_ir: Reindexed block 187: old start_pc=0xcf2 -> new start_pc=0xa03 +DEBUG azoth_core::cfg_ir: Reindexed block 188: old start_pc=0xcfe -> new start_pc=0xa0f +DEBUG azoth_core::cfg_ir: Reindexed block 189: old start_pc=0xd05 -> new start_pc=0xa16 +DEBUG azoth_core::cfg_ir: Reindexed block 190: old start_pc=0xd0b -> new start_pc=0xa1c +DEBUG azoth_core::cfg_ir: Reindexed block 191: old start_pc=0xd16 -> new start_pc=0xa27 +DEBUG azoth_core::cfg_ir: Reindexed block 192: old start_pc=0xd2a -> new start_pc=0xa3b +DEBUG azoth_core::cfg_ir: Reindexed block 193: old start_pc=0xd30 -> new start_pc=0xa41 +DEBUG azoth_core::cfg_ir: Reindexed block 194: old start_pc=0xd3b -> new start_pc=0xa4c +DEBUG azoth_core::cfg_ir: Reindexed block 195: old start_pc=0xd47 -> new start_pc=0xa58 +DEBUG azoth_core::cfg_ir: Reindexed block 196: old start_pc=0xd4d -> new start_pc=0xa5e +DEBUG azoth_core::cfg_ir: Reindexed block 197: old start_pc=0xd4e -> new start_pc=0xa5f +DEBUG azoth_core::cfg_ir: Reindexed block 198: old start_pc=0xd93 -> new start_pc=0xaa4 +DEBUG azoth_core::cfg_ir: Reindexed block 199: old start_pc=0xd99 -> new start_pc=0xaaa +DEBUG azoth_core::cfg_ir: Reindexed block 200: old start_pc=0xd9a -> new start_pc=0xaab +DEBUG azoth_core::cfg_ir: Reindexed block 201: old start_pc=0xdd5 -> new start_pc=0xb1f +DEBUG azoth_core::cfg_ir: Reindexed block 202: old start_pc=0xddb -> new start_pc=0xb25 +DEBUG azoth_core::cfg_ir: Reindexed block 203: old start_pc=0xddc -> new start_pc=0xb26 +DEBUG azoth_core::cfg_ir: Reindexed block 204: old start_pc=0xe47 -> new start_pc=0xcaa +DEBUG azoth_core::cfg_ir: Reindexed block 205: old start_pc=0xe5b -> new start_pc=0xccb +DEBUG azoth_core::cfg_ir: Reindexed block 206: old start_pc=0xe69 -> new start_pc=0xcd9 +DEBUG azoth_core::cfg_ir: Reindexed block 207: old start_pc=0xe6a -> new start_pc=0xcda +DEBUG azoth_core::cfg_ir: Reindexed block 208: old start_pc=0xe6f -> new start_pc=0xcdf +DEBUG azoth_core::cfg_ir: Reindexed block 209: old start_pc=0xe7c -> new start_pc=0xcec +DEBUG azoth_core::cfg_ir: Reindexed block 210: old start_pc=0xe7d -> new start_pc=0xced +DEBUG azoth_core::cfg_ir: Reindexed block 211: old start_pc=0xe8a -> new start_pc=0xcfa +DEBUG azoth_core::cfg_ir: Reindexed block 212: old start_pc=0xe8b -> new start_pc=0xcfb +DEBUG azoth_core::cfg_ir: Reindexed block 213: old start_pc=0xe97 -> new start_pc=0xd07 +DEBUG azoth_core::cfg_ir: Reindexed block 214: old start_pc=0xe98 -> new start_pc=0xd08 +DEBUG azoth_core::cfg_ir: Reindexed block 215: old start_pc=0xe9e -> new start_pc=0xd0e +DEBUG azoth_core::cfg_ir: Reindexed block 216: old start_pc=0xe9f -> new start_pc=0xd0f +DEBUG azoth_core::cfg_ir: Reindexed block 217: old start_pc=0xedc -> new start_pc=0xd4c +DEBUG azoth_core::cfg_ir: Reindexed block 218: old start_pc=0xef0 -> new start_pc=0xd67 +DEBUG azoth_core::cfg_ir: Reindexed block 219: old start_pc=0xf0e -> new start_pc=0xd85 +DEBUG azoth_core::cfg_ir: Reindexed block 220: old start_pc=0xf12 -> new start_pc=0xd89 +DEBUG azoth_core::cfg_ir: Reindexed block 221: old start_pc=0xf17 -> new start_pc=0xd8e +DEBUG azoth_core::cfg_ir: Reindexed block 222: old start_pc=0xf23 -> new start_pc=0xd9a +DEBUG azoth_core::cfg_ir: Reindexed block 223: old start_pc=0xf2d -> new start_pc=0xda4 +DEBUG azoth_core::cfg_ir: Reindexed block 224: old start_pc=0xf2f -> new start_pc=0xda6 +DEBUG azoth_core::cfg_ir: Reindexed block 225: old start_pc=0xf3a -> new start_pc=0xdb1 +DEBUG azoth_core::cfg_ir: Reindexed block 226: old start_pc=0xf40 -> new start_pc=0xdb7 +DEBUG azoth_core::cfg_ir: Reindexed block 227: old start_pc=0xf41 -> new start_pc=0xdb8 +DEBUG azoth_core::cfg_ir: Reindexed block 228: old start_pc=0xf7f -> new start_pc=0xdf6 +DEBUG azoth_core::cfg_ir: Reindexed block 229: old start_pc=0xf85 -> new start_pc=0xdfc +DEBUG azoth_core::cfg_ir: Reindexed block 230: old start_pc=0xf86 -> new start_pc=0xdfd +DEBUG azoth_core::cfg_ir: Reindexed block 231: old start_pc=0xfdf -> new start_pc=0xe9f +DEBUG azoth_core::cfg_ir: Reindexed block 232: old start_pc=0xfe5 -> new start_pc=0xea5 +DEBUG azoth_core::cfg_ir: Reindexed block 233: old start_pc=0xfe6 -> new start_pc=0xea6 +DEBUG azoth_core::cfg_ir: Reindexed block 234: old start_pc=0x1036 -> new start_pc=0xfe7 +DEBUG azoth_core::cfg_ir: Reindexed block 235: old start_pc=0x103c -> new start_pc=0xfed +DEBUG azoth_core::cfg_ir: Reindexed block 236: old start_pc=0x103d -> new start_pc=0xfee +DEBUG azoth_core::cfg_ir: Reindexed block 237: old start_pc=0x1082 -> new start_pc=0x1077 +DEBUG azoth_core::cfg_ir: Reindexed block 238: old start_pc=0x1088 -> new start_pc=0x107d +DEBUG azoth_core::cfg_ir: Reindexed block 239: old start_pc=0x1089 -> new start_pc=0x107e +DEBUG azoth_core::cfg_ir: Reindexed block 240: old start_pc=0x10ce -> new start_pc=0x10c3 +DEBUG azoth_core::cfg_ir: Reindexed block 241: old start_pc=0x10d4 -> new start_pc=0x10c9 +DEBUG azoth_core::cfg_ir: Reindexed block 242: old start_pc=0x10d5 -> new start_pc=0x10ca +DEBUG azoth_core::cfg_ir: Reindexed block 243: old start_pc=0x111a -> new start_pc=0x1172 +DEBUG azoth_core::cfg_ir: Reindexed block 244: old start_pc=0x1127 -> new start_pc=0x117f +DEBUG azoth_core::cfg_ir: Reindexed block 245: old start_pc=0x112a -> new start_pc=0x1182 +DEBUG azoth_core::cfg_ir: Reindexed block 246: old start_pc=0x1132 -> new start_pc=0x118a +DEBUG azoth_core::cfg_ir: Reindexed block 247: old start_pc=0x1138 -> new start_pc=0x1190 +DEBUG azoth_core::cfg_ir: Reindexed block 248: old start_pc=0x1139 -> new start_pc=0x1191 +DEBUG azoth_core::cfg_ir: Reindexed block 249: old start_pc=0x117d -> new start_pc=0x11d5 +DEBUG azoth_core::cfg_ir: Reindexed block 250: old start_pc=0x1183 -> new start_pc=0x11db +DEBUG azoth_core::cfg_ir: Reindexed block 251: old start_pc=0x1184 -> new start_pc=0x11dc +DEBUG azoth_core::cfg_ir: Reindexed block 252: old start_pc=0x11c9 -> new start_pc=0x1221 +DEBUG azoth_core::cfg_ir: Reindexed block 253: old start_pc=0x11d7 -> new start_pc=0x122f +DEBUG azoth_core::cfg_ir: Reindexed block 254: old start_pc=0x11d8 -> new start_pc=0x1230 +DEBUG azoth_core::cfg_ir: Reindexed block 255: old start_pc=0x11e5 -> new start_pc=0x123d +DEBUG azoth_core::cfg_ir: Reindexed block 256: old start_pc=0x11e6 -> new start_pc=0x123e +DEBUG azoth_core::cfg_ir: Reindexed block 257: old start_pc=0x11f2 -> new start_pc=0x124a +DEBUG azoth_core::cfg_ir: Reindexed block 258: old start_pc=0x11f3 -> new start_pc=0x124b +DEBUG azoth_core::cfg_ir: Reindexed block 259: old start_pc=0x11f9 -> new start_pc=0x1251 +DEBUG azoth_core::cfg_ir: Reindexed block 260: old start_pc=0x11fa -> new start_pc=0x1252 +DEBUG azoth_core::cfg_ir: Reindexed block 261: old start_pc=0x1236 -> new start_pc=0x1310 +DEBUG azoth_core::cfg_ir: Reindexed block 262: old start_pc=0x123c -> new start_pc=0x1316 +DEBUG azoth_core::cfg_ir: Reindexed block 263: old start_pc=0x123d -> new start_pc=0x1317 +DEBUG azoth_core::cfg_ir: Reindexed block 264: old start_pc=0x1282 -> new start_pc=0x135c +DEBUG azoth_core::cfg_ir: Reindexed block 265: old start_pc=0x1294 -> new start_pc=0x136e +DEBUG azoth_core::cfg_ir: Reindexed block 266: old start_pc=0x12a7 -> new start_pc=0x1381 +DEBUG azoth_core::cfg_ir: Reindexed block 267: old start_pc=0x12b4 -> new start_pc=0x138e +DEBUG azoth_core::cfg_ir: Reindexed block 268: old start_pc=0x12b5 -> new start_pc=0x138f +DEBUG azoth_core::cfg_ir: Reindexed block 269: old start_pc=0x12c5 -> new start_pc=0x139f +DEBUG azoth_core::cfg_ir: Reindexed block 270: old start_pc=0x12d1 -> new start_pc=0x13ab +DEBUG azoth_core::cfg_ir: Reindexed block 271: old start_pc=0x12dd -> new start_pc=0x13b7 +DEBUG azoth_core::cfg_ir: Reindexed block 272: old start_pc=0x12eb -> new start_pc=0x13c5 +DEBUG azoth_core::cfg_ir: Reindexed block 273: old start_pc=0x12f9 -> new start_pc=0x13d3 +DEBUG azoth_core::cfg_ir: Reindexed block 274: old start_pc=0x1307 -> new start_pc=0x13e1 +DEBUG azoth_core::cfg_ir: Reindexed block 275: old start_pc=0x130d -> new start_pc=0x13e7 +DEBUG azoth_core::cfg_ir: Reindexed block 276: old start_pc=0x130e -> new start_pc=0x13e8 +DEBUG azoth_core::cfg_ir: Reindexed block 277: old start_pc=0x1353 -> new start_pc=0x142d +DEBUG azoth_core::cfg_ir: Reindexed block 278: old start_pc=0x1359 -> new start_pc=0x1433 +DEBUG azoth_core::cfg_ir: Reindexed block 279: old start_pc=0x135a -> new start_pc=0x1434 +DEBUG azoth_core::cfg_ir: Reindexed block 280: old start_pc=0x139f -> new start_pc=0x1513 +DEBUG azoth_core::cfg_ir: Reindexed block 281: old start_pc=0x13a5 -> new start_pc=0x1519 +DEBUG azoth_core::cfg_ir: Reindexed block 282: old start_pc=0x13a6 -> new start_pc=0x151a +DEBUG azoth_core::cfg_ir: Reindexed block 283: old start_pc=0x13eb -> new start_pc=0x1631 +DEBUG azoth_core::cfg_ir: Reindexed block 284: old start_pc=0x13f1 -> new start_pc=0x1637 +DEBUG azoth_core::cfg_ir: Reindexed block 285: old start_pc=0x13f2 -> new start_pc=0x1638 +DEBUG azoth_core::cfg_ir: Reindexed block 286: old start_pc=0x1430 -> new start_pc=0x1739 +DEBUG azoth_core::cfg_ir: Reindexed block 287: old start_pc=0x1438 -> new start_pc=0x1741 +DEBUG azoth_core::cfg_ir: Reindexed block 288: old start_pc=0x143d -> new start_pc=0x1746 +DEBUG azoth_core::cfg_ir: Reindexed block 289: old start_pc=0x145d -> new start_pc=0x1766 +DEBUG azoth_core::cfg_ir: Reindexed block 290: old start_pc=0x14ac -> new start_pc=0x186b +DEBUG azoth_core::cfg_ir: Reindexed block 291: old start_pc=0x14c0 -> new start_pc=0x1892 +DEBUG azoth_core::cfg_ir: Reindexed block 292: old start_pc=0x14c7 -> new start_pc=0x1899 +DEBUG azoth_core::cfg_ir: Reindexed block 293: old start_pc=0x14c9 -> new start_pc=0x189b +DEBUG azoth_core::cfg_ir: Reindexed block 294: old start_pc=0x14ce -> new start_pc=0x18a0 +DEBUG azoth_core::cfg_ir: Reindexed block 295: old start_pc=0x14d7 -> new start_pc=0x18a9 +DEBUG azoth_core::cfg_ir: Reindexed block 296: old start_pc=0x14da -> new start_pc=0x18ac +DEBUG azoth_core::cfg_ir: Reindexed block 297: old start_pc=0x14e0 -> new start_pc=0x18b2 +DEBUG azoth_core::cfg_ir: Reindexed block 298: old start_pc=0x14e1 -> new start_pc=0x18b3 +DEBUG azoth_core::cfg_ir: Reindexed block 299: old start_pc=0x1519 -> new start_pc=0x199e +DEBUG azoth_core::cfg_ir: Reindexed block 300: old start_pc=0x152b -> new start_pc=0x19b0 +DEBUG azoth_core::cfg_ir: Reindexed block 301: old start_pc=0x152c -> new start_pc=0x19b1 +DEBUG azoth_core::cfg_ir: Reindexed block 302: old start_pc=0x153e -> new start_pc=0x19c3 +DEBUG azoth_core::cfg_ir: Reindexed block 303: old start_pc=0x153f -> new start_pc=0x19c4 +DEBUG azoth_core::cfg_ir: Reindexed block 304: old start_pc=0x1551 -> new start_pc=0x19d6 +DEBUG azoth_core::cfg_ir: Reindexed block 305: old start_pc=0x1552 -> new start_pc=0x19d7 +DEBUG azoth_core::cfg_ir: Reindexed block 306: old start_pc=0x1564 -> new start_pc=0x19e9 +DEBUG azoth_core::cfg_ir: Reindexed block 307: old start_pc=0x1565 -> new start_pc=0x19ea +DEBUG azoth_core::cfg_ir: Reindexed block 308: old start_pc=0x1575 -> new start_pc=0x19fa +DEBUG azoth_core::cfg_ir: Reindexed block 309: old start_pc=0x1576 -> new start_pc=0x19fb +DEBUG azoth_core::cfg_ir: Reindexed block 310: old start_pc=0x157e -> new start_pc=0x1a03 +DEBUG azoth_core::cfg_ir: Reindexed block 311: old start_pc=0x1583 -> new start_pc=0x1a08 +DEBUG azoth_core::cfg_ir: Reindexed block 312: old start_pc=0x158e -> new start_pc=0x1a13 +DEBUG azoth_core::cfg_ir: Reindexed block 313: old start_pc=0x1594 -> new start_pc=0x1a19 +DEBUG azoth_core::cfg_ir: Reindexed block 314: old start_pc=0x15b5 -> new start_pc=0x1a3a +DEBUG azoth_core::cfg_ir: Reindexed block 315: old start_pc=0x15c3 -> new start_pc=0x1a48 +DEBUG azoth_core::cfg_ir: Reindexed block 316: old start_pc=0x15cb -> new start_pc=0x1a50 +DEBUG azoth_core::cfg_ir: Reindexed block 317: old start_pc=0x15e6 -> new start_pc=0x1a6b +DEBUG azoth_core::cfg_ir: Reindexed block 318: old start_pc=0x15ed -> new start_pc=0x1a72 +DEBUG azoth_core::cfg_ir: Reindexed block 319: old start_pc=0x160a -> new start_pc=0x1a8f +DEBUG azoth_core::cfg_ir: Reindexed block 320: old start_pc=0x1610 -> new start_pc=0x1a95 +DEBUG azoth_core::cfg_ir: Reindexed block 321: old start_pc=0x1615 -> new start_pc=0x1a9a +DEBUG azoth_core::cfg_ir: Reindexed block 322: old start_pc=0x161a -> new start_pc=0x1a9f +DEBUG azoth_core::cfg_ir: Reindexed block 323: old start_pc=0x1620 -> new start_pc=0x1aa5 +DEBUG azoth_core::cfg_ir: Reindexed block 324: old start_pc=0x1622 -> new start_pc=0x1aa7 +DEBUG azoth_core::cfg_ir: Reindexed block 325: old start_pc=0x1624 -> new start_pc=0x1aa9 +DEBUG azoth_core::cfg_ir: Reindexed block 326: old start_pc=0x162d -> new start_pc=0x1ab2 +DEBUG azoth_core::cfg_ir: Reindexed block 327: old start_pc=0x1637 -> new start_pc=0x1abc +DEBUG azoth_core::cfg_ir: Reindexed block 328: old start_pc=0x163d -> new start_pc=0x1ac2 +DEBUG azoth_core::cfg_ir: Reindexed block 329: old start_pc=0x1647 -> new start_pc=0x1acc +DEBUG azoth_core::cfg_ir: Reindexed block 330: old start_pc=0x165f -> new start_pc=0x1ae4 +DEBUG azoth_core::cfg_ir: Reindexed block 331: old start_pc=0x166d -> new start_pc=0x1af2 +DEBUG azoth_core::cfg_ir: Reindexed block 332: old start_pc=0x1676 -> new start_pc=0x1afb +DEBUG azoth_core::cfg_ir: Reindexed block 333: old start_pc=0x167b -> new start_pc=0x1b00 +DEBUG azoth_core::cfg_ir: Reindexed block 334: old start_pc=0x1689 -> new start_pc=0x1b0e +DEBUG azoth_core::cfg_ir: Reindexed block 335: old start_pc=0x1690 -> new start_pc=0x1b15 +DEBUG azoth_core::cfg_ir: Reindexed block 336: old start_pc=0x1699 -> new start_pc=0x1b1e +DEBUG azoth_core::cfg_ir: Reindexed block 337: old start_pc=0x169f -> new start_pc=0x1b24 +DEBUG azoth_core::cfg_ir: Reindexed block 338: old start_pc=0x16a0 -> new start_pc=0x1b25 +DEBUG azoth_core::cfg_ir: Reindexed block 339: old start_pc=0x16ef -> new start_pc=0x1c2d +DEBUG azoth_core::cfg_ir: Reindexed block 340: old start_pc=0x1711 -> new start_pc=0x1c4f +DEBUG azoth_core::cfg_ir: Reindexed block 341: old start_pc=0x172c -> new start_pc=0x1c6a +DEBUG azoth_core::cfg_ir: Reindexed block 342: old start_pc=0x1733 -> new start_pc=0x1c71 +DEBUG azoth_core::cfg_ir: Reindexed block 343: old start_pc=0x1750 -> new start_pc=0x1c8e +DEBUG azoth_core::cfg_ir: Reindexed block 344: old start_pc=0x1752 -> new start_pc=0x1c90 +DEBUG azoth_core::cfg_ir: Reindexed block 345: old start_pc=0x175b -> new start_pc=0x1c99 +DEBUG azoth_core::cfg_ir: Reindexed block 346: old start_pc=0x177d -> new start_pc=0x1cbb +DEBUG azoth_core::cfg_ir: Reindexed block 347: old start_pc=0x1784 -> new start_pc=0x1cc2 +DEBUG azoth_core::cfg_ir: Reindexed block 348: old start_pc=0x1789 -> new start_pc=0x1cc7 +DEBUG azoth_core::cfg_ir: Reindexed block 349: old start_pc=0x178e -> new start_pc=0x1ccc +DEBUG azoth_core::cfg_ir: Reindexed block 350: old start_pc=0x179c -> new start_pc=0x1cda +DEBUG azoth_core::cfg_ir: Reindexed block 351: old start_pc=0x17a3 -> new start_pc=0x1ce1 +DEBUG azoth_core::cfg_ir: Reindexed block 352: old start_pc=0x17ab -> new start_pc=0x1ce9 +DEBUG azoth_core::cfg_ir: Reindexed block 353: old start_pc=0x17c1 -> new start_pc=0x1cff +DEBUG azoth_core::cfg_ir: Reindexed block 354: old start_pc=0x17c9 -> new start_pc=0x1d07 +DEBUG azoth_core::cfg_ir: Reindexed block 355: old start_pc=0x17cf -> new start_pc=0x1d0d +DEBUG azoth_core::cfg_ir: Reindexed block 356: old start_pc=0x17d2 -> new start_pc=0x1d10 +DEBUG azoth_core::cfg_ir: Reindexed block 357: old start_pc=0x17d8 -> new start_pc=0x1d16 +DEBUG azoth_core::cfg_ir: Reindexed block 358: old start_pc=0x17d9 -> new start_pc=0x1d17 +DEBUG azoth_core::cfg_ir: Reindexed block 359: old start_pc=0x1814 -> new start_pc=0x1d8d +DEBUG azoth_core::cfg_ir: Reindexed block 360: old start_pc=0x181a -> new start_pc=0x1d93 +DEBUG azoth_core::cfg_ir: Reindexed block 361: old start_pc=0x181b -> new start_pc=0x1d94 +DEBUG azoth_core::cfg_ir: Reindexed block 362: old start_pc=0x1853 -> new start_pc=0x1e91 +DEBUG azoth_core::cfg_ir: Reindexed block 363: old start_pc=0x1866 -> new start_pc=0x1ea4 +DEBUG azoth_core::cfg_ir: Reindexed block 364: old start_pc=0x186b -> new start_pc=0x1ea9 +DEBUG azoth_core::cfg_ir: Reindexed block 365: old start_pc=0x1883 -> new start_pc=0x1ec1 +DEBUG azoth_core::cfg_ir: Reindexed block 366: old start_pc=0x188b -> new start_pc=0x1ec9 +DEBUG azoth_core::cfg_ir: Reindexed block 367: old start_pc=0x18a1 -> new start_pc=0x1edf +DEBUG azoth_core::cfg_ir: Reindexed block 368: old start_pc=0x18a8 -> new start_pc=0x1ee6 +DEBUG azoth_core::cfg_ir: Reindexed block 369: old start_pc=0x18c4 -> new start_pc=0x1f02 +DEBUG azoth_core::cfg_ir: Reindexed block 370: old start_pc=0x18c7 -> new start_pc=0x1f05 +DEBUG azoth_core::cfg_ir: Reindexed block 371: old start_pc=0x18ca -> new start_pc=0x1f08 +DEBUG azoth_core::cfg_ir: Reindexed block 372: old start_pc=0x18d3 -> new start_pc=0x1f11 +DEBUG azoth_core::cfg_ir: Reindexed block 373: old start_pc=0x18ec -> new start_pc=0x1f2a +DEBUG azoth_core::cfg_ir: Reindexed block 374: old start_pc=0x18f3 -> new start_pc=0x1f31 +DEBUG azoth_core::cfg_ir: Reindexed block 375: old start_pc=0x190a -> new start_pc=0x1f48 +DEBUG azoth_core::cfg_ir: Reindexed block 376: old start_pc=0x1910 -> new start_pc=0x1f4e +DEBUG azoth_core::cfg_ir: Reindexed block 377: old start_pc=0x192c -> new start_pc=0x1f6a +DEBUG azoth_core::cfg_ir: Reindexed block 378: old start_pc=0x192e -> new start_pc=0x1f6c +DEBUG azoth_core::cfg_ir: Reindexed block 379: old start_pc=0x1931 -> new start_pc=0x1f6f +DEBUG azoth_core::cfg_ir: Reindexed block 380: old start_pc=0x1939 -> new start_pc=0x1f77 +DEBUG azoth_core::cfg_ir: Reindexed block 381: old start_pc=0x1944 -> new start_pc=0x1f82 +DEBUG azoth_core::cfg_ir: Reindexed block 382: old start_pc=0x1953 -> new start_pc=0x1f91 +DEBUG azoth_core::cfg_ir: Reindexed block 383: old start_pc=0x195b -> new start_pc=0x1f99 +DEBUG azoth_core::cfg_ir: Reindexed block 384: old start_pc=0x1966 -> new start_pc=0x1fa4 +DEBUG azoth_core::cfg_ir: Reindexed block 385: old start_pc=0x196c -> new start_pc=0x1faa +DEBUG azoth_core::cfg_ir: Reindexed block 386: old start_pc=0x197a -> new start_pc=0x1fb8 +DEBUG azoth_core::cfg_ir: Reindexed block 387: old start_pc=0x1985 -> new start_pc=0x1fc3 +DEBUG azoth_core::cfg_ir: Reindexed block 388: old start_pc=0x1990 -> new start_pc=0x1fce +DEBUG azoth_core::cfg_ir: Reindexed block 389: old start_pc=0x1997 -> new start_pc=0x1fd5 +DEBUG azoth_core::cfg_ir: Reindexed block 390: old start_pc=0x19a0 -> new start_pc=0x1fde +DEBUG azoth_core::cfg_ir: Reindexed block 391: old start_pc=0x19b5 -> new start_pc=0x1ff3 +DEBUG azoth_core::cfg_ir: Reindexed block 392: old start_pc=0x19bc -> new start_pc=0x1ffa +DEBUG azoth_core::cfg_ir: Reindexed block 393: old start_pc=0x19c2 -> new start_pc=0x2000 +DEBUG azoth_core::cfg_ir: Reindexed block 394: old start_pc=0x19c3 -> new start_pc=0x2001 +DEBUG azoth_core::cfg_ir: Reindexed block 395: old start_pc=0x1a08 -> new start_pc=0x2082 +DEBUG azoth_core::cfg_ir: Reindexed block 396: old start_pc=0x1a15 -> new start_pc=0x208f +DEBUG azoth_core::cfg_ir: Reindexed block 397: old start_pc=0x1a26 -> new start_pc=0x20a0 +DEBUG azoth_core::cfg_ir: Reindexed block 398: old start_pc=0x1a35 -> new start_pc=0x20af +DEBUG azoth_core::cfg_ir: Reindexed block 399: old start_pc=0x1a41 -> new start_pc=0x20bb +DEBUG azoth_core::cfg_ir: Reindexed block 400: old start_pc=0x1a4e -> new start_pc=0x20c8 +DEBUG azoth_core::cfg_ir: Reindexed block 401: old start_pc=0x1a63 -> new start_pc=0x20dd +DEBUG azoth_core::cfg_ir: Reindexed block 402: old start_pc=0x1a69 -> new start_pc=0x20e3 +DEBUG azoth_core::cfg_ir: Reindexed block 403: old start_pc=0x1a76 -> new start_pc=0x20f0 +DEBUG azoth_core::cfg_ir: Reindexed block 404: old start_pc=0x1a85 -> new start_pc=0x20ff +DEBUG azoth_core::cfg_ir: Reindexed block 405: old start_pc=0x1a8b -> new start_pc=0x2105 +DEBUG azoth_core::cfg_ir: Reindexed block 406: old start_pc=0x1a93 -> new start_pc=0x210d +DEBUG azoth_core::cfg_ir: Reindexed block 407: old start_pc=0x1aa6 -> new start_pc=0x2120 +DEBUG azoth_core::cfg_ir: Reindexed block 408: old start_pc=0x1aab -> new start_pc=0x2125 +DEBUG azoth_core::cfg_ir: Reindexed block 409: old start_pc=0x1aba -> new start_pc=0x2134 +DEBUG azoth_core::cfg_ir: Reindexed block 410: old start_pc=0x1ad3 -> new start_pc=0x214d +DEBUG azoth_core::cfg_ir: Reindexed block 411: old start_pc=0x1ada -> new start_pc=0x2154 +DEBUG azoth_core::cfg_ir: Reindexed block 412: old start_pc=0x1ae4 -> new start_pc=0x215e +DEBUG azoth_core::cfg_ir: Reindexed block 413: old start_pc=0x1af0 -> new start_pc=0x216a +DEBUG azoth_core::cfg_ir: Reindexed block 414: old start_pc=0x1b04 -> new start_pc=0x217e +DEBUG azoth_core::cfg_ir: Reindexed block 415: old start_pc=0x1b0a -> new start_pc=0x2184 +DEBUG azoth_core::cfg_ir: Reindexed block 416: old start_pc=0x1b18 -> new start_pc=0x2192 +DEBUG azoth_core::cfg_ir: Reindexed block 417: old start_pc=0x1b1e -> new start_pc=0x2198 +DEBUG azoth_core::cfg_ir: Reindexed block 418: old start_pc=0x1b26 -> new start_pc=0x21a0 +DEBUG azoth_core::cfg_ir: Reindexed block 419: old start_pc=0x1b39 -> new start_pc=0x21b3 +DEBUG azoth_core::cfg_ir: Reindexed block 420: old start_pc=0x1b48 -> new start_pc=0x21c2 +DEBUG azoth_core::cfg_ir: Reindexed block 421: old start_pc=0x1b61 -> new start_pc=0x21db +DEBUG azoth_core::cfg_ir: Reindexed block 422: old start_pc=0x1b6b -> new start_pc=0x21e5 +DEBUG azoth_core::cfg_ir: Reindexed block 423: old start_pc=0x1b7c -> new start_pc=0x21f6 +DEBUG azoth_core::cfg_ir: Reindexed block 424: old start_pc=0x1b8d -> new start_pc=0x2207 +DEBUG azoth_core::cfg_ir: Reindexed block 425: old start_pc=0x1b9e -> new start_pc=0x2218 +DEBUG azoth_core::cfg_ir: Reindexed block 426: old start_pc=0x1baf -> new start_pc=0x2229 +DEBUG azoth_core::cfg_ir: Reindexed block 427: old start_pc=0x1bb9 -> new start_pc=0x2233 +DEBUG azoth_core::cfg_ir: Reindexed block 428: old start_pc=0x1bc6 -> new start_pc=0x2240 +DEBUG azoth_core::cfg_ir: Reindexed block 429: old start_pc=0x1bd7 -> new start_pc=0x2251 +DEBUG azoth_core::cfg_ir: Reindexed block 430: old start_pc=0x1be1 -> new start_pc=0x225b +DEBUG azoth_core::cfg_ir: Reindexed block 431: old start_pc=0x1bec -> new start_pc=0x2266 +DEBUG azoth_core::cfg_ir: Reindexed block 432: old start_pc=0x1bfd -> new start_pc=0x2277 +DEBUG azoth_core::cfg_ir: Reindexed block 433: old start_pc=0x1c0c -> new start_pc=0x2286 +DEBUG azoth_core::cfg_ir: Reindexed block 434: old start_pc=0x1c17 -> new start_pc=0x2291 +DEBUG azoth_core::cfg_ir: Reindexed block 435: old start_pc=0x1c30 -> new start_pc=0x22aa +DEBUG azoth_core::cfg_ir: Reindexed block 436: old start_pc=0x1c37 -> new start_pc=0x22b1 +DEBUG azoth_core::cfg_ir: Reindexed block 437: old start_pc=0x1c48 -> new start_pc=0x22c2 +DEBUG azoth_core::cfg_ir: Reindexed block 438: old start_pc=0x1c54 -> new start_pc=0x22ce +DEBUG azoth_core::cfg_ir: Reindexed block 439: old start_pc=0x1c5e -> new start_pc=0x22d8 +DEBUG azoth_core::cfg_ir: Reindexed block 440: old start_pc=0x1c61 -> new start_pc=0x22db +DEBUG azoth_core::cfg_ir: Reindexed block 441: old start_pc=0x1c69 -> new start_pc=0x22e3 +DEBUG azoth_core::cfg_ir: Reindexed block 442: old start_pc=0x1c75 -> new start_pc=0x22ef +DEBUG azoth_core::cfg_ir: Reindexed block 443: old start_pc=0x1c8b -> new start_pc=0x2305 +DEBUG azoth_core::cfg_ir: Reindexed block 444: old start_pc=0x1c92 -> new start_pc=0x230c +DEBUG azoth_core::cfg_ir: Reindexed block 445: old start_pc=0x1c9e -> new start_pc=0x2318 +DEBUG azoth_core::cfg_ir: Reindexed block 446: old start_pc=0x1ca5 -> new start_pc=0x231f +DEBUG azoth_core::cfg_ir: Reindexed block 447: old start_pc=0x1cae -> new start_pc=0x2328 +DEBUG azoth_core::cfg_ir: Reindexed block 448: old start_pc=0x1cb9 -> new start_pc=0x2333 +DEBUG azoth_core::cfg_ir: Reindexed block 449: old start_pc=0x1cbe -> new start_pc=0x2338 +DEBUG azoth_core::cfg_ir: Reindexed block 450: old start_pc=0x1cc6 -> new start_pc=0x2340 +DEBUG azoth_core::cfg_ir: Reindexed block 451: old start_pc=0x1ccf -> new start_pc=0x2349 +DEBUG azoth_core::cfg_ir: Reindexed block 452: old start_pc=0x1cd2 -> new start_pc=0x234c +DEBUG azoth_core::cfg_ir: Reindexed block 453: old start_pc=0x1cda -> new start_pc=0x2354 +DEBUG azoth_core::cfg_ir: Reindexed block 454: old start_pc=0x1cea -> new start_pc=0x2364 +DEBUG azoth_core::cfg_ir: Reindexed block 455: old start_pc=0x1d04 -> new start_pc=0x237e +DEBUG azoth_core::cfg_ir: Reindexed block 456: old start_pc=0x1d10 -> new start_pc=0x238a +DEBUG azoth_core::cfg_ir: Reindexed block 457: old start_pc=0x1d17 -> new start_pc=0x2391 +DEBUG azoth_core::cfg_ir: Reindexed block 458: old start_pc=0x1d37 -> new start_pc=0x23b1 +DEBUG azoth_core::cfg_ir: Reindexed block 459: old start_pc=0x1d3e -> new start_pc=0x23b8 +DEBUG azoth_core::cfg_ir: Reindexed block 460: old start_pc=0x1d46 -> new start_pc=0x23c0 +DEBUG azoth_core::cfg_ir: Reindexed block 461: old start_pc=0x1d8b -> new start_pc=0x2481 +DEBUG azoth_core::cfg_ir: Reindexed block 462: old start_pc=0x1d91 -> new start_pc=0x2487 +DEBUG azoth_core::cfg_ir: Reindexed block 463: old start_pc=0x1d92 -> new start_pc=0x2488 +DEBUG azoth_core::cfg_ir: Reindexed block 464: old start_pc=0x1de1 -> new start_pc=0x251e +DEBUG azoth_core::cfg_ir: Reindexed block 465: old start_pc=0x1e05 -> new start_pc=0x2542 +DEBUG azoth_core::cfg_ir: Reindexed block 466: old start_pc=0x1e0d -> new start_pc=0x254a +DEBUG azoth_core::cfg_ir: Reindexed block 467: old start_pc=0x1e28 -> new start_pc=0x2565 +DEBUG azoth_core::cfg_ir: Reindexed block 468: old start_pc=0x1e2f -> new start_pc=0x256c +DEBUG azoth_core::cfg_ir: Reindexed block 469: old start_pc=0x1e47 -> new start_pc=0x2584 +DEBUG azoth_core::cfg_ir: Reindexed block 470: old start_pc=0x1e4c -> new start_pc=0x2589 +DEBUG azoth_core::cfg_ir: Reindexed block 471: old start_pc=0x1e50 -> new start_pc=0x258d +DEBUG azoth_core::cfg_ir: Reindexed block 472: old start_pc=0x1e53 -> new start_pc=0x2590 +DEBUG azoth_core::cfg_ir: Reindexed block 473: old start_pc=0x1e5b -> new start_pc=0x2598 +DEBUG azoth_core::cfg_ir: Reindexed block 474: old start_pc=0x1e65 -> new start_pc=0x25a2 +DEBUG azoth_core::cfg_ir: Reindexed block 475: old start_pc=0x1e77 -> new start_pc=0x25b4 +DEBUG azoth_core::cfg_ir: Reindexed block 476: old start_pc=0x1e7c -> new start_pc=0x25b9 +DEBUG azoth_core::cfg_ir: Reindexed block 477: old start_pc=0x1e83 -> new start_pc=0x25c0 +DEBUG azoth_core::cfg_ir: Reindexed block 478: old start_pc=0x1e91 -> new start_pc=0x25ce +DEBUG azoth_core::cfg_ir: Reindexed block 479: old start_pc=0x1ea4 -> new start_pc=0x25e1 +DEBUG azoth_core::cfg_ir: Reindexed block 480: old start_pc=0x1eb1 -> new start_pc=0x25ee +DEBUG azoth_core::cfg_ir: Reindexed block 481: old start_pc=0x1eb7 -> new start_pc=0x25f4 +DEBUG azoth_core::cfg_ir: Reindexed block 482: old start_pc=0x1ecf -> new start_pc=0x260c +DEBUG azoth_core::cfg_ir: Reindexed block 483: old start_pc=0x1ed6 -> new start_pc=0x2613 +DEBUG azoth_core::cfg_ir: Reindexed block 484: old start_pc=0x1ee0 -> new start_pc=0x261d +DEBUG azoth_core::cfg_ir: Reindexed block 485: old start_pc=0x1ee9 -> new start_pc=0x2626 +DEBUG azoth_core::cfg_ir: Reindexed block 486: old start_pc=0x1ef2 -> new start_pc=0x262f +DEBUG azoth_core::cfg_ir: Reindexed block 487: old start_pc=0x1efa -> new start_pc=0x2637 +DEBUG azoth_core::cfg_ir: Reindexed block 488: old start_pc=0x1f00 -> new start_pc=0x263d +DEBUG azoth_core::cfg_ir: Reindexed block 489: old start_pc=0x1f02 -> new start_pc=0x263f +DEBUG azoth_core::cfg_ir: Reindexed block 490: old start_pc=0x1f0b -> new start_pc=0x2648 +DEBUG azoth_core::cfg_ir: Reindexed block 491: old start_pc=0x1f17 -> new start_pc=0x2654 +DEBUG azoth_core::cfg_ir: Reindexed block 492: old start_pc=0x1f22 -> new start_pc=0x265f +DEBUG azoth_core::cfg_ir: Reindexed block 493: old start_pc=0x1f30 -> new start_pc=0x266d +DEBUG azoth_core::cfg_ir: Reindexed block 494: old start_pc=0x1f3b -> new start_pc=0x2678 +DEBUG azoth_core::cfg_ir: Reindexed block 495: old start_pc=0x1f43 -> new start_pc=0x2680 +DEBUG azoth_core::cfg_ir: Reindexed block 496: old start_pc=0x1f49 -> new start_pc=0x2686 +DEBUG azoth_core::cfg_ir: Reindexed block 497: old start_pc=0x1f4f -> new start_pc=0x268c +DEBUG azoth_core::cfg_ir: Reindexed block 498: old start_pc=0x1f5b -> new start_pc=0x2698 +DEBUG azoth_core::cfg_ir: Reindexed block 499: old start_pc=0x1f74 -> new start_pc=0x26b1 +DEBUG azoth_core::cfg_ir: Reindexed block 500: old start_pc=0x1f79 -> new start_pc=0x26b6 +DEBUG azoth_core::cfg_ir: Reindexed block 501: old start_pc=0x1f83 -> new start_pc=0x26c0 +DEBUG azoth_core::cfg_ir: Reindexed block 502: old start_pc=0x1f89 -> new start_pc=0x26c6 +DEBUG azoth_core::cfg_ir: Reindexed block 503: old start_pc=0x1f8a -> new start_pc=0x26c7 +DEBUG azoth_core::cfg_ir: Reindexed block 504: old start_pc=0x1fc1 -> new start_pc=0x2710 +DEBUG azoth_core::cfg_ir: Reindexed block 505: old start_pc=0x1fc7 -> new start_pc=0x2716 +DEBUG azoth_core::cfg_ir: Reindexed block 506: old start_pc=0x1fc8 -> new start_pc=0x2717 +DEBUG azoth_core::cfg_ir: Reindexed block 507: old start_pc=0x200d -> new start_pc=0x275c +DEBUG azoth_core::cfg_ir: Reindexed block 508: old start_pc=0x2013 -> new start_pc=0x2762 +DEBUG azoth_core::cfg_ir: Reindexed block 509: old start_pc=0x2014 -> new start_pc=0x2763 +DEBUG azoth_core::cfg_ir: Reindexed block 510: old start_pc=0x2050 -> new start_pc=0x279f +DEBUG azoth_core::cfg_ir: Reindexed block 511: old start_pc=0x207b -> new start_pc=0x27ca +DEBUG azoth_core::cfg_ir: Reindexed block 512: old start_pc=0x2083 -> new start_pc=0x27d2 +DEBUG azoth_core::cfg_ir: Reindexed block 513: old start_pc=0x2098 -> new start_pc=0x27e7 +DEBUG azoth_core::cfg_ir: Reindexed block 514: old start_pc=0x209f -> new start_pc=0x27ee +DEBUG azoth_core::cfg_ir: Reindexed block 515: old start_pc=0x20bc -> new start_pc=0x280b +DEBUG azoth_core::cfg_ir: Reindexed block 516: old start_pc=0x20be -> new start_pc=0x280d +DEBUG azoth_core::cfg_ir: Reindexed block 517: old start_pc=0x20c9 -> new start_pc=0x2818 +DEBUG azoth_core::cfg_ir: Reindexed block 518: old start_pc=0x20d7 -> new start_pc=0x2826 +DEBUG azoth_core::cfg_ir: Reindexed block 519: old start_pc=0x20ec -> new start_pc=0x283b +DEBUG azoth_core::cfg_ir: Reindexed block 520: old start_pc=0x20f2 -> new start_pc=0x2841 +DEBUG azoth_core::cfg_ir: Reindexed block 521: old start_pc=0x20ff -> new start_pc=0x284e +DEBUG azoth_core::cfg_ir: Reindexed block 522: old start_pc=0x2105 -> new start_pc=0x2854 +DEBUG azoth_core::cfg_ir: Reindexed block 523: old start_pc=0x2111 -> new start_pc=0x2860 +DEBUG azoth_core::cfg_ir: Reindexed block 524: old start_pc=0x2121 -> new start_pc=0x2870 +DEBUG azoth_core::cfg_ir: Reindexed block 525: old start_pc=0x2130 -> new start_pc=0x287f +DEBUG azoth_core::cfg_ir: Reindexed block 526: old start_pc=0x213a -> new start_pc=0x2889 +DEBUG azoth_core::cfg_ir: Reindexed block 527: old start_pc=0x2149 -> new start_pc=0x2898 +DEBUG azoth_core::cfg_ir: Reindexed block 528: old start_pc=0x2155 -> new start_pc=0x28a4 +DEBUG azoth_core::cfg_ir: Reindexed block 529: old start_pc=0x215f -> new start_pc=0x28ae +DEBUG azoth_core::cfg_ir: Reindexed block 530: old start_pc=0x2162 -> new start_pc=0x28b1 +DEBUG azoth_core::cfg_ir: Reindexed block 531: old start_pc=0x216a -> new start_pc=0x28b9 +DEBUG azoth_core::cfg_ir: Reindexed block 532: old start_pc=0x2175 -> new start_pc=0x28c4 +DEBUG azoth_core::cfg_ir: Reindexed block 533: old start_pc=0x218b -> new start_pc=0x28da +DEBUG azoth_core::cfg_ir: Reindexed block 534: old start_pc=0x2191 -> new start_pc=0x28e0 +DEBUG azoth_core::cfg_ir: Reindexed block 535: old start_pc=0x219d -> new start_pc=0x28ec +DEBUG azoth_core::cfg_ir: Reindexed block 536: old start_pc=0x21a4 -> new start_pc=0x28f3 +DEBUG azoth_core::cfg_ir: Reindexed block 537: old start_pc=0x21ad -> new start_pc=0x28fc +DEBUG azoth_core::cfg_ir: Reindexed block 538: old start_pc=0x21b8 -> new start_pc=0x2907 +DEBUG azoth_core::cfg_ir: Reindexed block 539: old start_pc=0x21bc -> new start_pc=0x290b +DEBUG azoth_core::cfg_ir: Reindexed block 540: old start_pc=0x21c4 -> new start_pc=0x2913 +DEBUG azoth_core::cfg_ir: Reindexed block 541: old start_pc=0x21cd -> new start_pc=0x291c +DEBUG azoth_core::cfg_ir: Reindexed block 542: old start_pc=0x21d0 -> new start_pc=0x291f +DEBUG azoth_core::cfg_ir: Reindexed block 543: old start_pc=0x21d8 -> new start_pc=0x2927 +DEBUG azoth_core::cfg_ir: Reindexed block 544: old start_pc=0x21e7 -> new start_pc=0x2936 +DEBUG azoth_core::cfg_ir: Reindexed block 545: old start_pc=0x2201 -> new start_pc=0x2950 +DEBUG azoth_core::cfg_ir: Reindexed block 546: old start_pc=0x220d -> new start_pc=0x295c +DEBUG azoth_core::cfg_ir: Reindexed block 547: old start_pc=0x2214 -> new start_pc=0x2963 +DEBUG azoth_core::cfg_ir: Reindexed block 548: old start_pc=0x2234 -> new start_pc=0x2983 +DEBUG azoth_core::cfg_ir: Reindexed block 549: old start_pc=0x223a -> new start_pc=0x2989 +DEBUG azoth_core::cfg_ir: Reindexed block 550: old start_pc=0x2242 -> new start_pc=0x2991 +DEBUG azoth_core::cfg_ir: Reindexed block 551: old start_pc=0x224e -> new start_pc=0x299d +DEBUG azoth_core::cfg_ir: Reindexed block 552: old start_pc=0x2258 -> new start_pc=0x29a7 +DEBUG azoth_core::cfg_ir: Reindexed block 553: old start_pc=0x225b -> new start_pc=0x29aa +DEBUG azoth_core::cfg_ir: Reindexed block 554: old start_pc=0x2263 -> new start_pc=0x29b2 +DEBUG azoth_core::cfg_ir: Reindexed block 555: old start_pc=0x2269 -> new start_pc=0x29b8 +DEBUG azoth_core::cfg_ir: Reindexed block 556: old start_pc=0x227c -> new start_pc=0x29cb +DEBUG azoth_core::cfg_ir: Reindexed block 557: old start_pc=0x2288 -> new start_pc=0x29d7 +DEBUG azoth_core::cfg_ir: Reindexed block 558: old start_pc=0x228f -> new start_pc=0x29de +DEBUG azoth_core::cfg_ir: Reindexed block 559: old start_pc=0x2292 -> new start_pc=0x29e1 +DEBUG azoth_core::cfg_ir: Reindexed block 560: old start_pc=0x229c -> new start_pc=0x29eb +DEBUG azoth_core::cfg_ir: Reindexed block 561: old start_pc=0x22a5 -> new start_pc=0x29f4 +DEBUG azoth_core::cfg_ir: Reindexed block 562: old start_pc=0x22af -> new start_pc=0x29fe +DEBUG azoth_core::cfg_ir: Reindexed block 563: old start_pc=0x22b8 -> new start_pc=0x2a07 +DEBUG azoth_core::cfg_ir: Reindexed block 564: old start_pc=0x22c0 -> new start_pc=0x2a0f +DEBUG azoth_core::cfg_ir: Reindexed block 565: old start_pc=0x22c5 -> new start_pc=0x2a14 +DEBUG azoth_core::cfg_ir: Reindexed block 566: old start_pc=0x22da -> new start_pc=0x2a29 +DEBUG azoth_core::cfg_ir: Reindexed block 567: old start_pc=0x22db -> new start_pc=0x2a2a +DEBUG azoth_core::cfg_ir: Reindexed block 568: old start_pc=0x22e9 -> new start_pc=0x2a38 +DEBUG azoth_core::cfg_ir: Reindexed block 569: old start_pc=0x22ff -> new start_pc=0x2a4e +DEBUG azoth_core::cfg_ir: Reindexed block 570: old start_pc=0x2308 -> new start_pc=0x2a57 +DEBUG azoth_core::cfg_ir: Reindexed block 571: old start_pc=0x2311 -> new start_pc=0x2a60 +DEBUG azoth_core::cfg_ir: Reindexed block 572: old start_pc=0x231c -> new start_pc=0x2a6b +DEBUG azoth_core::cfg_ir: Reindexed block 573: old start_pc=0x2326 -> new start_pc=0x2a75 +DEBUG azoth_core::cfg_ir: Reindexed block 574: old start_pc=0x232c -> new start_pc=0x2a7b +DEBUG azoth_core::cfg_ir: Reindexed block 575: old start_pc=0x233b -> new start_pc=0x2a8a +DEBUG azoth_core::cfg_ir: Reindexed block 576: old start_pc=0x2347 -> new start_pc=0x2a96 +DEBUG azoth_core::cfg_ir: Reindexed block 577: old start_pc=0x234f -> new start_pc=0x2a9e +DEBUG azoth_core::cfg_ir: Reindexed block 578: old start_pc=0x2355 -> new start_pc=0x2aa4 +DEBUG azoth_core::cfg_ir: Reindexed block 579: old start_pc=0x2362 -> new start_pc=0x2ab1 +DEBUG azoth_core::cfg_ir: Reindexed block 580: old start_pc=0x2368 -> new start_pc=0x2ab7 +DEBUG azoth_core::cfg_ir: Reindexed block 581: old start_pc=0x237e -> new start_pc=0x2acd +DEBUG azoth_core::cfg_ir: Reindexed block 582: old start_pc=0x2386 -> new start_pc=0x2ad5 +DEBUG azoth_core::cfg_ir: Reindexed block 583: old start_pc=0x2391 -> new start_pc=0x2ae0 +DEBUG azoth_core::cfg_ir: Reindexed block 584: old start_pc=0x2398 -> new start_pc=0x2ae7 +DEBUG azoth_core::cfg_ir: Reindexed block 585: old start_pc=0x23a2 -> new start_pc=0x2af1 +DEBUG azoth_core::cfg_ir: Reindexed block 586: old start_pc=0x23aa -> new start_pc=0x2af9 +DEBUG azoth_core::cfg_ir: Reindexed block 587: old start_pc=0x23bb -> new start_pc=0x2b0a +DEBUG azoth_core::cfg_ir: Reindexed block 588: old start_pc=0x23c0 -> new start_pc=0x2b0f +DEBUG azoth_core::cfg_ir: Reindexed block 589: old start_pc=0x23cc -> new start_pc=0x2b1b +DEBUG azoth_core::cfg_ir: Reindexed block 590: old start_pc=0x23db -> new start_pc=0x2b2a +DEBUG azoth_core::cfg_ir: Reindexed block 591: old start_pc=0x23e5 -> new start_pc=0x2b34 +DEBUG azoth_core::cfg_ir: Reindexed block 592: old start_pc=0x23ec -> new start_pc=0x2b3b +DEBUG azoth_core::cfg_ir: Reindexed block 593: old start_pc=0x23f4 -> new start_pc=0x2b43 +DEBUG azoth_core::cfg_ir: Reindexed block 594: old start_pc=0x23fb -> new start_pc=0x2b4a +DEBUG azoth_core::cfg_ir: Reindexed block 595: old start_pc=0x2408 -> new start_pc=0x2b57 +DEBUG azoth_core::cfg_ir: Reindexed block 596: old start_pc=0x2414 -> new start_pc=0x2b63 +DEBUG azoth_core::cfg_ir: Reindexed block 597: old start_pc=0x2421 -> new start_pc=0x2b70 +DEBUG azoth_core::cfg_ir: Reindexed block 598: old start_pc=0x242f -> new start_pc=0x2b7e +DEBUG azoth_core::cfg_ir: Reindexed block 599: old start_pc=0x2437 -> new start_pc=0x2b86 +DEBUG azoth_core::cfg_ir: Reindexed block 600: old start_pc=0x244b -> new start_pc=0x2b9a +DEBUG azoth_core::cfg_ir: Reindexed block 601: old start_pc=0x2451 -> new start_pc=0x2ba0 +DEBUG azoth_core::cfg_ir: Reindexed block 602: old start_pc=0x245a -> new start_pc=0x2ba9 +DEBUG azoth_core::cfg_ir: Reindexed block 603: old start_pc=0x2461 -> new start_pc=0x2bb0 +DEBUG azoth_core::cfg_ir: Reindexed block 604: old start_pc=0x2465 -> new start_pc=0x2bb4 +DEBUG azoth_core::cfg_ir: Reindexed block 605: old start_pc=0x2470 -> new start_pc=0x2bbf +DEBUG azoth_core::cfg_ir: Reindexed block 606: old start_pc=0x247a -> new start_pc=0x2bc9 +DEBUG azoth_core::cfg_ir: Reindexed block 607: old start_pc=0x2484 -> new start_pc=0x2bd3 +DEBUG azoth_core::cfg_ir: Reindexed block 608: old start_pc=0x2490 -> new start_pc=0x2bdf +DEBUG azoth_core::cfg_ir: Reindexed block 609: old start_pc=0x249b -> new start_pc=0x2bea +DEBUG azoth_core::cfg_ir: Reindexed block 610: old start_pc=0x24a5 -> new start_pc=0x2bf4 +DEBUG azoth_core::cfg_ir: Reindexed block 611: old start_pc=0x24b0 -> new start_pc=0x2bff +DEBUG azoth_core::cfg_ir: Reindexed block 612: old start_pc=0x24c4 -> new start_pc=0x2c13 +DEBUG azoth_core::cfg_ir: Reindexed block 613: old start_pc=0x24d0 -> new start_pc=0x2c1f +DEBUG azoth_core::cfg_ir: Reindexed block 614: old start_pc=0x24d9 -> new start_pc=0x2c28 +DEBUG azoth_core::cfg_ir: Reindexed block 615: old start_pc=0x24e2 -> new start_pc=0x2c31 +DEBUG azoth_core::cfg_ir: Reindexed block 616: old start_pc=0x24eb -> new start_pc=0x2c3a +DEBUG azoth_core::cfg_ir: Reindexed block 617: old start_pc=0x24f4 -> new start_pc=0x2c43 +DEBUG azoth_core::cfg_ir: Reindexed block 618: old start_pc=0x250c -> new start_pc=0x2c5b +DEBUG azoth_core::cfg_ir: Reindexed block 619: old start_pc=0x2513 -> new start_pc=0x2c62 +DEBUG azoth_core::cfg_ir: Reindexed block 620: old start_pc=0x251c -> new start_pc=0x2c6b +DEBUG azoth_core::cfg_ir: Reindexed block 621: old start_pc=0x252d -> new start_pc=0x2c7c +DEBUG azoth_core::cfg_ir: Reindexed block 622: old start_pc=0x2536 -> new start_pc=0x2c85 +DEBUG azoth_core::cfg_ir: Reindexed block 623: old start_pc=0x2544 -> new start_pc=0x2c93 +DEBUG azoth_core::cfg_ir: Reindexed block 624: old start_pc=0x2559 -> new start_pc=0x2ca8 +DEBUG azoth_core::cfg_ir: Reindexed block 625: old start_pc=0x2560 -> new start_pc=0x2caf +DEBUG azoth_core::cfg_ir: Reindexed block 626: old start_pc=0x2567 -> new start_pc=0x2cb6 +DEBUG azoth_core::cfg_ir: Reindexed block 627: old start_pc=0x256a -> new start_pc=0x2cb9 +DEBUG azoth_core::cfg_ir: Reindexed block 628: old start_pc=0x2573 -> new start_pc=0x2cc2 +DEBUG azoth_core::cfg_ir: Reindexed block 629: old start_pc=0x257c -> new start_pc=0x2ccb +DEBUG azoth_core::cfg_ir: Reindexed block 630: old start_pc=0x2592 -> new start_pc=0x2ce1 +DEBUG azoth_core::cfg_ir: Reindexed block 631: old start_pc=0x259e -> new start_pc=0x2ced +DEBUG azoth_core::cfg_ir: Reindexed block 632: old start_pc=0x25a5 -> new start_pc=0x2cf4 +DEBUG azoth_core::cfg_ir: Reindexed block 633: old start_pc=0x25ea -> new start_pc=0x2d60 +DEBUG azoth_core::cfg_ir: Reindexed block 634: old start_pc=0x25f0 -> new start_pc=0x2d66 +DEBUG azoth_core::cfg_ir: Reindexed block 635: old start_pc=0x25f1 -> new start_pc=0x2d67 +DEBUG azoth_core::cfg_ir: Reindexed block 636: old start_pc=0x262b -> new start_pc=0x2da1 +DEBUG azoth_core::cfg_ir: Reindexed block 637: old start_pc=0x2631 -> new start_pc=0x2da7 +DEBUG azoth_core::cfg_ir: Reindexed block 638: old start_pc=0x2632 -> new start_pc=0x2da8 +DEBUG azoth_core::cfg_ir: Reindexed block 639: old start_pc=0x266f -> new start_pc=0x2e99 +DEBUG azoth_core::cfg_ir: Reindexed block 640: old start_pc=0x2675 -> new start_pc=0x2e9f +DEBUG azoth_core::cfg_ir: Reindexed block 641: old start_pc=0x2676 -> new start_pc=0x2ea0 +DEBUG azoth_core::cfg_ir: Reindexed block 642: old start_pc=0x26b1 -> new start_pc=0x2f52 +DEBUG azoth_core::cfg_ir: Reindexed block 643: old start_pc=0x26b7 -> new start_pc=0x2f58 +DEBUG azoth_core::cfg_ir: Reindexed block 644: old start_pc=0x26b8 -> new start_pc=0x2f59 +DEBUG azoth_core::cfg_ir: Reindexed block 645: old start_pc=0x26f4 -> new start_pc=0x2f95 +DEBUG azoth_core::cfg_ir: Reindexed block 646: old start_pc=0x26fa -> new start_pc=0x2f9b +DEBUG azoth_core::cfg_ir: Reindexed block 647: old start_pc=0x26fb -> new start_pc=0x2f9c +DEBUG azoth_core::cfg_ir: Reindexed block 648: old start_pc=0x2740 -> new start_pc=0x2fe1 +DEBUG azoth_core::cfg_ir: Reindexed block 649: old start_pc=0x27ad -> new start_pc=0x305b +DEBUG azoth_core::cfg_ir: Reindexed block 650: old start_pc=0x27b5 -> new start_pc=0x3063 +DEBUG azoth_core::cfg_ir: Reindexed block 651: old start_pc=0x27bc -> new start_pc=0x306a +DEBUG azoth_core::cfg_ir: Reindexed block 652: old start_pc=0x27c3 -> new start_pc=0x3071 +DEBUG azoth_core::cfg_ir: Reindexed block 653: old start_pc=0x27e0 -> new start_pc=0x308e +DEBUG azoth_core::cfg_ir: Reindexed block 654: old start_pc=0x27e8 -> new start_pc=0x3096 +DEBUG azoth_core::cfg_ir: Reindexed block 655: old start_pc=0x27ee -> new start_pc=0x309c +DEBUG azoth_core::cfg_ir: Reindexed block 656: old start_pc=0x27f5 -> new start_pc=0x30a3 +DEBUG azoth_core::cfg_ir: Reindexed block 657: old start_pc=0x27fc -> new start_pc=0x30aa +DEBUG azoth_core::cfg_ir: Reindexed block 658: old start_pc=0x2803 -> new start_pc=0x30b1 +DEBUG azoth_core::cfg_ir: Reindexed block 659: old start_pc=0x280f -> new start_pc=0x30bd +DEBUG azoth_core::cfg_ir: Reindexed block 660: old start_pc=0x2822 -> new start_pc=0x30d0 +DEBUG azoth_core::cfg_ir: Reindexed block 661: old start_pc=0x2829 -> new start_pc=0x30d7 +DEBUG azoth_core::cfg_ir: Reindexed block 662: old start_pc=0x282f -> new start_pc=0x30dd +DEBUG azoth_core::cfg_ir: Reindexed block 663: old start_pc=0x283e -> new start_pc=0x30ec +DEBUG azoth_core::cfg_ir: Reindexed block 664: old start_pc=0x2842 -> new start_pc=0x30f0 +DEBUG azoth_core::cfg_ir: Reindexed block 665: old start_pc=0x284c -> new start_pc=0x30fa +DEBUG azoth_core::cfg_ir: Reindexed block 666: old start_pc=0x2864 -> new start_pc=0x3112 +DEBUG azoth_core::cfg_ir: Reindexed block 667: old start_pc=0x286d -> new start_pc=0x311b +DEBUG azoth_core::cfg_ir: Reindexed block 668: old start_pc=0x287c -> new start_pc=0x312a +DEBUG azoth_core::cfg_ir: Reindexed block 669: old start_pc=0x2881 -> new start_pc=0x312f +DEBUG azoth_core::cfg_ir: Reindexed block 670: old start_pc=0x288b -> new start_pc=0x3139 +DEBUG azoth_core::cfg_ir: Reindexed block 671: old start_pc=0x2898 -> new start_pc=0x3146 +DEBUG azoth_core::cfg_ir: Reindexed block 672: old start_pc=0x28a8 -> new start_pc=0x3156 +DEBUG azoth_core::cfg_ir: Reindexed block 673: old start_pc=0x28b7 -> new start_pc=0x3165 +DEBUG azoth_core::cfg_ir: Reindexed block 674: old start_pc=0x28bf -> new start_pc=0x316d +DEBUG azoth_core::cfg_ir: Reindexed block 675: old start_pc=0x28c9 -> new start_pc=0x3177 +DEBUG azoth_core::cfg_ir: Reindexed block 676: old start_pc=0x28da -> new start_pc=0x3188 +DEBUG azoth_core::cfg_ir: Reindexed block 677: old start_pc=0x28e4 -> new start_pc=0x3192 +DEBUG azoth_core::cfg_ir: Reindexed block 678: old start_pc=0x28f1 -> new start_pc=0x319f +DEBUG azoth_core::cfg_ir: Reindexed block 679: old start_pc=0x28f7 -> new start_pc=0x31a5 +DEBUG azoth_core::cfg_ir: Reindexed block 680: old start_pc=0x28ff -> new start_pc=0x31ad +DEBUG azoth_core::cfg_ir: Reindexed block 681: old start_pc=0x290e -> new start_pc=0x31bc +DEBUG azoth_core::cfg_ir: Reindexed block 682: old start_pc=0x291d -> new start_pc=0x31cb +DEBUG azoth_core::cfg_ir: Reindexed block 683: old start_pc=0x2936 -> new start_pc=0x31e4 +DEBUG azoth_core::cfg_ir: Reindexed block 684: old start_pc=0x293c -> new start_pc=0x31ea +DEBUG azoth_core::cfg_ir: Reindexed block 685: old start_pc=0x2946 -> new start_pc=0x31f4 +DEBUG azoth_core::cfg_ir: Reindexed block 686: old start_pc=0x294f -> new start_pc=0x31fd +DEBUG azoth_core::cfg_ir: Reindexed block 687: old start_pc=0x295f -> new start_pc=0x320d +DEBUG azoth_core::cfg_ir: Reindexed block 688: old start_pc=0x296c -> new start_pc=0x321a +DEBUG azoth_core::cfg_ir: Reindexed block 689: old start_pc=0x2972 -> new start_pc=0x3220 +DEBUG azoth_core::cfg_ir: Reindexed block 690: old start_pc=0x297a -> new start_pc=0x3228 +DEBUG azoth_core::cfg_ir: Reindexed block 691: old start_pc=0x2989 -> new start_pc=0x3237 +DEBUG azoth_core::cfg_ir: Reindexed block 692: old start_pc=0x2998 -> new start_pc=0x3246 +DEBUG azoth_core::cfg_ir: Reindexed block 693: old start_pc=0x29b1 -> new start_pc=0x325f +DEBUG azoth_core::cfg_ir: Reindexed block 694: old start_pc=0x29bb -> new start_pc=0x3269 +DEBUG azoth_core::cfg_ir: Reindexed block 695: old start_pc=0x29c4 -> new start_pc=0x3272 +DEBUG azoth_core::cfg_ir: Reindexed block 696: old start_pc=0x29d2 -> new start_pc=0x3280 +DEBUG azoth_core::cfg_ir: Reindexed block 697: old start_pc=0x29dc -> new start_pc=0x328a +DEBUG azoth_core::cfg_ir: Reindexed block 698: old start_pc=0x29eb -> new start_pc=0x3299 +DEBUG azoth_core::cfg_ir: Reindexed block 699: old start_pc=0x29f0 -> new start_pc=0x329e +DEBUG azoth_core::cfg_ir: Reindexed block 700: old start_pc=0x29f5 -> new start_pc=0x32a3 +DEBUG azoth_core::cfg_ir: Reindexed block 701: old start_pc=0x2a0a -> new start_pc=0x32b8 +DEBUG azoth_core::cfg_ir: Reindexed block 702: old start_pc=0x2a0e -> new start_pc=0x32bc +DEBUG azoth_core::cfg_ir: Reindexed block 703: old start_pc=0x2a18 -> new start_pc=0x32c6 +DEBUG azoth_core::cfg_ir: Reindexed block 704: old start_pc=0x2a30 -> new start_pc=0x32de +DEBUG azoth_core::cfg_ir: Reindexed block 705: old start_pc=0x2a39 -> new start_pc=0x32e7 +DEBUG azoth_core::cfg_ir: Reindexed block 706: old start_pc=0x2a49 -> new start_pc=0x32f7 +DEBUG azoth_core::cfg_ir: Reindexed block 707: old start_pc=0x2a58 -> new start_pc=0x3306 +DEBUG azoth_core::cfg_ir: Reindexed block 708: old start_pc=0x2a62 -> new start_pc=0x3310 +DEBUG azoth_core::cfg_ir: Reindexed block 709: old start_pc=0x2a78 -> new start_pc=0x3326 +DEBUG azoth_core::cfg_ir: Reindexed block 710: old start_pc=0x2a89 -> new start_pc=0x3337 +DEBUG azoth_core::cfg_ir: Reindexed block 711: old start_pc=0x2a95 -> new start_pc=0x3343 +DEBUG azoth_core::cfg_ir: Reindexed block 712: old start_pc=0x2a9c -> new start_pc=0x334a +DEBUG azoth_core::cfg_ir: Reindexed block 713: old start_pc=0x2aa1 -> new start_pc=0x334f +DEBUG azoth_core::cfg_ir: Reindexed block 714: old start_pc=0x2ab2 -> new start_pc=0x3360 +DEBUG azoth_core::cfg_ir: Reindexed block 715: old start_pc=0x2ab7 -> new start_pc=0x3365 +DEBUG azoth_core::cfg_ir: Reindexed block 716: old start_pc=0x2aba -> new start_pc=0x3368 +DEBUG azoth_core::cfg_ir: Reindexed block 717: old start_pc=0x2ac4 -> new start_pc=0x3372 +DEBUG azoth_core::cfg_ir: Reindexed block 718: old start_pc=0x2adc -> new start_pc=0x338a +DEBUG azoth_core::cfg_ir: Reindexed block 719: old start_pc=0x2aeb -> new start_pc=0x3399 +DEBUG azoth_core::cfg_ir: Reindexed block 720: old start_pc=0x2af0 -> new start_pc=0x339e +DEBUG azoth_core::cfg_ir: Reindexed block 721: old start_pc=0x2b06 -> new start_pc=0x33b4 +DEBUG azoth_core::cfg_ir: Reindexed block 722: old start_pc=0x2b18 -> new start_pc=0x33c6 +DEBUG azoth_core::cfg_ir: Reindexed block 723: old start_pc=0x2b1f -> new start_pc=0x33cd +DEBUG azoth_core::cfg_ir: Reindexed block 724: old start_pc=0x2b21 -> new start_pc=0x33cf +DEBUG azoth_core::cfg_ir: Reindexed block 725: old start_pc=0x2b2f -> new start_pc=0x33dd +DEBUG azoth_core::cfg_ir: Reindexed block 726: old start_pc=0x2b39 -> new start_pc=0x33e7 +DEBUG azoth_core::cfg_ir: Reindexed block 727: old start_pc=0x2b3f -> new start_pc=0x33ed +DEBUG azoth_core::cfg_ir: Reindexed block 728: old start_pc=0x2b40 -> new start_pc=0x33ee +DEBUG azoth_core::cfg_ir: Reindexed block 729: old start_pc=0x2b4a -> new start_pc=0x33f8 +DEBUG azoth_core::cfg_ir: Reindexed block 730: old start_pc=0x2b56 -> new start_pc=0x3404 +DEBUG azoth_core::cfg_ir: Reindexed block 731: old start_pc=0x2b5c -> new start_pc=0x340a +DEBUG azoth_core::cfg_ir: Reindexed block 732: old start_pc=0x2b61 -> new start_pc=0x340f +DEBUG azoth_core::cfg_ir: Reindexed block 733: old start_pc=0x2b79 -> new start_pc=0x3427 +DEBUG azoth_core::cfg_ir: Reindexed block 734: old start_pc=0x2b7f -> new start_pc=0x342d +DEBUG azoth_core::cfg_ir: Reindexed block 735: old start_pc=0x2b85 -> new start_pc=0x3433 +DEBUG azoth_core::cfg_ir: Reindexed block 736: old start_pc=0x2b9a -> new start_pc=0x3448 +DEBUG azoth_core::cfg_ir: Reindexed block 737: old start_pc=0x2ba2 -> new start_pc=0x3450 +DEBUG azoth_core::cfg_ir: Reindexed block 738: old start_pc=0x2ba9 -> new start_pc=0x3457 +DEBUG azoth_core::cfg_ir: Reindexed block 739: old start_pc=0x2bb1 -> new start_pc=0x345f +DEBUG azoth_core::cfg_ir: Reindexed block 740: old start_pc=0x2bc9 -> new start_pc=0x3477 +DEBUG azoth_core::cfg_ir: Reindexed block 741: old start_pc=0x2bcf -> new start_pc=0x347d +DEBUG azoth_core::cfg_ir: Reindexed block 742: old start_pc=0x2bd8 -> new start_pc=0x3486 +DEBUG azoth_core::cfg_ir: Reindexed block 743: old start_pc=0x2bdf -> new start_pc=0x348d +DEBUG azoth_core::cfg_ir: Reindexed block 744: old start_pc=0x2bfd -> new start_pc=0x34ab +DEBUG azoth_core::cfg_ir: Reindexed block 745: old start_pc=0x2c05 -> new start_pc=0x34b3 +DEBUG azoth_core::cfg_ir: Reindexed block 746: old start_pc=0x2c0c -> new start_pc=0x34ba +DEBUG azoth_core::cfg_ir: Reindexed block 747: old start_pc=0x2c51 -> new start_pc=0x34ff +DEBUG azoth_core::cfg_ir: Reindexed block 748: old start_pc=0x2c5c -> new start_pc=0x350a +DEBUG azoth_core::cfg_ir: Reindexed block 749: old start_pc=0x2c6d -> new start_pc=0x351b +DEBUG azoth_core::cfg_ir: Reindexed block 750: old start_pc=0x2c7c -> new start_pc=0x352a +DEBUG azoth_core::cfg_ir: Reindexed block 751: old start_pc=0x2c87 -> new start_pc=0x3535 +DEBUG azoth_core::cfg_ir: Reindexed block 752: old start_pc=0x2c98 -> new start_pc=0x3546 +DEBUG azoth_core::cfg_ir: Reindexed block 753: old start_pc=0x2ca4 -> new start_pc=0x3552 +DEBUG azoth_core::cfg_ir: Reindexed block 754: old start_pc=0x2cae -> new start_pc=0x355c +DEBUG azoth_core::cfg_ir: Reindexed block 755: old start_pc=0x2cb1 -> new start_pc=0x355f +DEBUG azoth_core::cfg_ir: Reindexed block 756: old start_pc=0x2cb9 -> new start_pc=0x3567 +DEBUG azoth_core::cfg_ir: Reindexed block 757: old start_pc=0x2cc5 -> new start_pc=0x3573 +DEBUG azoth_core::cfg_ir: Reindexed block 758: old start_pc=0x2cdb -> new start_pc=0x3589 +DEBUG azoth_core::cfg_ir: Reindexed block 759: old start_pc=0x2ce7 -> new start_pc=0x3595 +DEBUG azoth_core::cfg_ir: Reindexed block 760: old start_pc=0x2cee -> new start_pc=0x359c +DEBUG azoth_core::cfg_ir: Reindexed block 761: old start_pc=0x2cf7 -> new start_pc=0x35a5 +DEBUG azoth_core::cfg_ir: Reindexed block 762: old start_pc=0x2d02 -> new start_pc=0x35b0 +DEBUG azoth_core::cfg_ir: Reindexed block 763: old start_pc=0x2d07 -> new start_pc=0x35b5 +DEBUG azoth_core::cfg_ir: Reindexed block 764: old start_pc=0x2d0f -> new start_pc=0x35bd +DEBUG azoth_core::cfg_ir: Reindexed block 765: old start_pc=0x2d18 -> new start_pc=0x35c6 +DEBUG azoth_core::cfg_ir: Reindexed block 766: old start_pc=0x2d1b -> new start_pc=0x35c9 +DEBUG azoth_core::cfg_ir: Reindexed block 767: old start_pc=0x2d23 -> new start_pc=0x35d1 +DEBUG azoth_core::cfg_ir: Reindexed block 768: old start_pc=0x2d33 -> new start_pc=0x35e1 +DEBUG azoth_core::cfg_ir: Reindexed block 769: old start_pc=0x2d4d -> new start_pc=0x35fb +DEBUG azoth_core::cfg_ir: Reindexed block 770: old start_pc=0x2d59 -> new start_pc=0x3607 +DEBUG azoth_core::cfg_ir: Reindexed block 771: old start_pc=0x2d60 -> new start_pc=0x360e +DEBUG azoth_core::cfg_ir: Reindexed block 772: old start_pc=0x2d80 -> new start_pc=0x362e +DEBUG azoth_core::cfg_ir: Reindexed block 773: old start_pc=0x2d88 -> new start_pc=0x3636 +DEBUG azoth_core::cfg_ir: Reindexed block 774: old start_pc=0x2dcd -> new start_pc=0x36a9 +DEBUG azoth_core::cfg_ir: Reindexed block 775: old start_pc=0x2dce -> new start_pc=0x36aa +DEBUG azoth_core::cfg_ir: Reindexed block 776: old start_pc=0x2dd0 -> new start_pc=0x36ac +DEBUG azoth_core::cfg_ir: Reindexed block 777: old start_pc=0x2dde -> new start_pc=0x36ba +DEBUG azoth_core::cfg_ir: Reindexed block 778: old start_pc=0x2de3 -> new start_pc=0x36bf +DEBUG azoth_core::cfg_ir: Reindexed block 779: old start_pc=0x2de5 -> new start_pc=0x36c1 +DEBUG azoth_core::cfg_ir: Reindexed block 780: old start_pc=0x2df2 -> new start_pc=0x36ce +DEBUG azoth_core::cfg_ir: Reindexed block 781: old start_pc=0x2df7 -> new start_pc=0x36d3 +DEBUG azoth_core::cfg_ir: Reindexed block 782: old start_pc=0x2df9 -> new start_pc=0x36d5 +DEBUG azoth_core::cfg_ir: Reindexed block 783: old start_pc=0x2e07 -> new start_pc=0x36e3 +DEBUG azoth_core::cfg_ir: Reindexed block 784: old start_pc=0x2e0c -> new start_pc=0x36e8 +DEBUG azoth_core::cfg_ir: Reindexed block 785: old start_pc=0x2e0e -> new start_pc=0x36ea +DEBUG azoth_core::cfg_ir: Reindexed block 786: old start_pc=0x2e1b -> new start_pc=0x36f7 +DEBUG azoth_core::cfg_ir: Reindexed block 787: old start_pc=0x2e20 -> new start_pc=0x36fc +DEBUG azoth_core::cfg_ir: Reindexed block 788: old start_pc=0x2e22 -> new start_pc=0x36fe +DEBUG azoth_core::cfg_ir: Reindexed block 789: old start_pc=0x2e2f -> new start_pc=0x370b +DEBUG azoth_core::cfg_ir: Reindexed block 790: old start_pc=0x2e34 -> new start_pc=0x3710 +DEBUG azoth_core::cfg_ir: Reindexed block 791: old start_pc=0x2e36 -> new start_pc=0x3712 +DEBUG azoth_core::cfg_ir: Reindexed block 792: old start_pc=0x2e44 -> new start_pc=0x3720 +DEBUG azoth_core::cfg_ir: Reindexed block 793: old start_pc=0x2e49 -> new start_pc=0x3725 +DEBUG azoth_core::cfg_ir: Reindexed block 794: old start_pc=0x2e4b -> new start_pc=0x3727 +DEBUG azoth_core::cfg_ir: Reindexed block 795: old start_pc=0x2e59 -> new start_pc=0x3735 +DEBUG azoth_core::cfg_ir: Reindexed block 796: old start_pc=0x2e5e -> new start_pc=0x373a +DEBUG azoth_core::cfg_ir: Reindexed block 797: old start_pc=0x2e60 -> new start_pc=0x373c +DEBUG azoth_core::cfg_ir: Reindexed block 798: old start_pc=0x2e6e -> new start_pc=0x374a +DEBUG azoth_core::cfg_ir: Reindexed block 799: old start_pc=0x2e73 -> new start_pc=0x374f +DEBUG azoth_core::cfg_ir: Reindexed block 800: old start_pc=0x2e75 -> new start_pc=0x3751 +DEBUG azoth_core::cfg_ir: Reindexed block 801: old start_pc=0x2e83 -> new start_pc=0x375f +DEBUG azoth_core::cfg_ir: Reindexed block 802: old start_pc=0x2e88 -> new start_pc=0x3764 +DEBUG azoth_core::cfg_ir: Reindexed block 803: old start_pc=0x2e8a -> new start_pc=0x3766 +DEBUG azoth_core::cfg_ir: Reindexed block 804: old start_pc=0x2e98 -> new start_pc=0x3774 +DEBUG azoth_core::cfg_ir: Reindexed block 805: old start_pc=0x2e9d -> new start_pc=0x3779 +DEBUG azoth_core::cfg_ir: Reindexed block 806: old start_pc=0x2e9f -> new start_pc=0x377b +DEBUG azoth_core::cfg_ir: Reindexed block 807: old start_pc=0x2ead -> new start_pc=0x3789 +DEBUG azoth_core::cfg_ir: Reindexed block 808: old start_pc=0x2eb2 -> new start_pc=0x378e +DEBUG azoth_core::cfg_ir: Reindexed block 809: old start_pc=0x2eb4 -> new start_pc=0x3790 +DEBUG azoth_core::cfg_ir: Reindexed block 810: old start_pc=0x2ec2 -> new start_pc=0x379e +DEBUG azoth_core::cfg_ir: Reindexed block 811: old start_pc=0x2ec7 -> new start_pc=0x37a3 +DEBUG azoth_core::cfg_ir: Reindexed block 812: old start_pc=0x2ec9 -> new start_pc=0x37a5 +DEBUG azoth_core::cfg_ir: Reindexed block 813: old start_pc=0x2ed7 -> new start_pc=0x37b3 +DEBUG azoth_core::cfg_ir: Reindexed block 814: old start_pc=0x2edc -> new start_pc=0x37b8 +DEBUG azoth_core::cfg_ir: Reindexed block 815: old start_pc=0x2ede -> new start_pc=0x37ba +DEBUG azoth_core::cfg_ir: Reindexed block 816: old start_pc=0x2eeb -> new start_pc=0x37c7 +DEBUG azoth_core::cfg_ir: Reindexed block 817: old start_pc=0x2ef0 -> new start_pc=0x37cc +DEBUG azoth_core::cfg_ir: Reindexed block 818: old start_pc=0x2ef2 -> new start_pc=0x37ce +DEBUG azoth_core::cfg_ir: Reindexed block 819: old start_pc=0x2f00 -> new start_pc=0x37dc +DEBUG azoth_core::cfg_ir: Reindexed block 820: old start_pc=0x2f05 -> new start_pc=0x37e1 +DEBUG azoth_core::cfg_ir: Reindexed block 821: old start_pc=0x2f07 -> new start_pc=0x37e3 +DEBUG azoth_core::cfg_ir: Reindexed block 822: old start_pc=0x2f15 -> new start_pc=0x37f1 +DEBUG azoth_core::cfg_ir: Reindexed block 823: old start_pc=0x2f1a -> new start_pc=0x37f6 +DEBUG azoth_core::cfg_ir: Reindexed block 824: old start_pc=0x2f1c -> new start_pc=0x37f8 +DEBUG azoth_core::cfg_ir: Reindexed block 825: old start_pc=0x2f2a -> new start_pc=0x3806 +DEBUG azoth_core::cfg_ir: Reindexed block 826: old start_pc=0x2f2f -> new start_pc=0x380b +DEBUG azoth_core::cfg_ir: Reindexed block 827: old start_pc=0x2f31 -> new start_pc=0x380d +DEBUG azoth_core::cfg_ir: Reindexed block 828: old start_pc=0x2f3f -> new start_pc=0x381b +DEBUG azoth_core::cfg_ir: Reindexed block 829: old start_pc=0x2f44 -> new start_pc=0x3820 +DEBUG azoth_core::cfg_ir: Reindexed block 830: old start_pc=0x2f46 -> new start_pc=0x3822 +DEBUG azoth_core::cfg_ir: Reindexed block 831: old start_pc=0x2f53 -> new start_pc=0x382f +DEBUG azoth_core::cfg_ir: Reindexed block 832: old start_pc=0x2f58 -> new start_pc=0x3834 +DEBUG azoth_core::cfg_ir: Reindexed block 833: old start_pc=0x2f6a -> new start_pc=0x3846 +DEBUG azoth_core::cfg_ir: Reindexed block 834: old start_pc=0x2f81 -> new start_pc=0x385d +DEBUG azoth_core::cfg_ir: Reindexed block 835: old start_pc=0x2f93 -> new start_pc=0x386f +DEBUG azoth_core::cfg_ir: Reindexed block 836: old start_pc=0x2faa -> new start_pc=0x3886 +DEBUG azoth_core::cfg_ir: Reindexed block 837: old start_pc=0x2fbc -> new start_pc=0x3898 +DEBUG azoth_core::cfg_ir: Reindexed block 838: old start_pc=0x2fd3 -> new start_pc=0x38af +DEBUG azoth_core::cfg_ir: Reindexed block 839: old start_pc=0x2fe5 -> new start_pc=0x38c1 +DEBUG azoth_core::cfg_ir: Reindexed block 840: old start_pc=0x2ffc -> new start_pc=0x38d8 +DEBUG azoth_core::cfg_ir: Reindexed block 841: old start_pc=0x300e -> new start_pc=0x38ea +DEBUG azoth_core::cfg_ir: Reindexed block 842: old start_pc=0x3025 -> new start_pc=0x3901 +DEBUG azoth_core::cfg_ir: Reindexed block 843: old start_pc=0x3037 -> new start_pc=0x3913 +DEBUG azoth_core::cfg_ir: Reindexed block 844: old start_pc=0x304e -> new start_pc=0x392a +DEBUG azoth_core::cfg_ir: Reindexed block 845: old start_pc=0x3060 -> new start_pc=0x393c +DEBUG azoth_core::cfg_ir: Reindexed block 846: old start_pc=0x3077 -> new start_pc=0x3953 +DEBUG azoth_core::cfg_ir: Reindexed block 847: old start_pc=0x3089 -> new start_pc=0x3965 +DEBUG azoth_core::cfg_ir: Reindexed block 848: old start_pc=0x30a0 -> new start_pc=0x397c +DEBUG azoth_core::cfg_ir: Reindexed block 849: old start_pc=0x30b2 -> new start_pc=0x398e +DEBUG azoth_core::cfg_ir: Reindexed block 850: old start_pc=0x30c9 -> new start_pc=0x39a5 +DEBUG azoth_core::cfg_ir: Remapped runtime bounds: 0x2ef-0x30db -> 0x0-0x39b7 +DEBUG azoth_transform::obfuscator: PC reindexing complete: 6749 mappings +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=0 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=1 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=2 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=2 start_pc=0x0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x0 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=3 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=4 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=4 start_pc=0x11 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x11 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=5 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=5 start_pc=0x22 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x22 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=6 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=6 start_pc=0x2d in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2d +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=7 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=7 start_pc=0x38 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x38 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=8 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=8 start_pc=0x43 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x43 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=9 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=9 start_pc=0x4e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x4e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=10 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=10 start_pc=0x59 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x59 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=11 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=11 start_pc=0x64 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x64 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=12 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=12 start_pc=0x6f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x6f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=13 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=13 start_pc=0x7a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x7a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=14 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=14 start_pc=0x85 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x85 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=15 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=15 start_pc=0x90 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x90 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=16 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=16 start_pc=0x9b in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x9b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=17 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=17 start_pc=0xa6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xa6 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=18 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=18 start_pc=0xb1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xb1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=19 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=19 start_pc=0xbc in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xbc +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=20 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=20 start_pc=0xc7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xc7 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=21 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=21 start_pc=0xd2 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xd2 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=22 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=22 start_pc=0xdd in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xdd +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=23 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=24 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=24 start_pc=0xea in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xea +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=25 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=25 start_pc=0xef in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xef +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=26 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=26 start_pc=0xf4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xf4 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=27 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=27 start_pc=0xf9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xf9 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=28 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=28 start_pc=0xfe in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xfe +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=29 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=29 start_pc=0x103 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x103 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=30 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=30 start_pc=0x108 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x108 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=31 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=31 start_pc=0x10d in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x10d +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=32 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=32 start_pc=0x112 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x112 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=33 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=33 start_pc=0x117 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x117 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=34 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=34 start_pc=0x11c in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x11c +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=35 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=35 start_pc=0x121 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x121 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=36 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=36 start_pc=0x126 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x126 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=37 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=37 start_pc=0x12b in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x12b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=38 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=38 start_pc=0x130 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x130 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=39 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=39 start_pc=0x135 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x135 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=40 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=40 start_pc=0x13a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x13a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=41 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=41 start_pc=0x13f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x13f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=42 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=42 start_pc=0x144 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x144 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=43 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=43 start_pc=0x14a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x14a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=44 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=44 start_pc=0x155 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x155 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=45 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=46 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=47 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=47 start_pc=0x198 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x198 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=48 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=48 start_pc=0x19e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x19e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=49 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=50 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=50 start_pc=0x1c0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1c0 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=51 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=51 start_pc=0x1c6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1c6 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=52 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=53 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=53 start_pc=0x1fa in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1fa +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=54 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=54 start_pc=0x200 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x200 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=55 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=56 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=56 start_pc=0x21c in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x21c +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=57 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=57 start_pc=0x222 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x222 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=58 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=59 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=59 start_pc=0x239 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x239 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=60 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=60 start_pc=0x23f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x23f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=61 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=62 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=62 start_pc=0x25e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x25e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=63 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=63 start_pc=0x267 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x267 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=64 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=64 start_pc=0x299 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x299 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=65 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=65 start_pc=0x2a1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=66 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=66 start_pc=0x2a9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a9 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=67 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=68 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=69 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=69 start_pc=0x2d6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2d6 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=70 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=71 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=71 start_pc=0x30b in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x30b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=72 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=72 start_pc=0x341 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x341 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=73 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=74 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=74 start_pc=0x346 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x346 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=75 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=75 start_pc=0x355 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x355 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=76 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=76 start_pc=0x35f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x35f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=77 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=78 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=78 start_pc=0x369 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x369 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=79 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=79 start_pc=0x370 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x370 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=80 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=80 start_pc=0x375 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x375 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=81 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=81 start_pc=0x37b in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x37b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=82 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=83 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=83 start_pc=0x391 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x391 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=84 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=84 start_pc=0x397 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x397 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=85 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=86 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=86 start_pc=0x3ae in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3ae +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=87 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=87 start_pc=0x3b4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3b4 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=88 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=88 start_pc=0x3bf in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3bf +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=89 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=90 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=90 start_pc=0x401 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x401 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=91 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=91 start_pc=0x407 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x407 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=92 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=93 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=93 start_pc=0x445 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x445 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=94 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=94 start_pc=0x44b in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x44b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=95 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=96 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=96 start_pc=0x462 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x462 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=97 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=97 start_pc=0x468 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x468 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=98 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=99 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=99 start_pc=0x493 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x493 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=100 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=101 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=102 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=102 start_pc=0x4a2 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x4a2 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=103 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=104 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=104 start_pc=0x4b6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x4b6 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=105 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=105 start_pc=0x4be in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x4be +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=106 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=106 start_pc=0x4cb in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x4cb +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=107 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=107 start_pc=0x4d1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x4d1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=108 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=108 start_pc=0x4e0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x4e0 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=109 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=109 start_pc=0x4e5 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x4e5 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=110 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=110 start_pc=0x541 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x541 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=111 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=111 start_pc=0x549 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x549 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=112 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=113 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=114 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=114 start_pc=0x572 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x572 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=115 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=115 start_pc=0x581 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x581 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=116 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=116 start_pc=0x58a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x58a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=117 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=117 start_pc=0x58f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x58f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=118 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=118 start_pc=0x59b in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x59b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=119 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=120 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=120 start_pc=0x5b3 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x5b3 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=121 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=121 start_pc=0x5bb in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x5bb +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=122 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=122 start_pc=0x5c1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x5c1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=123 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=123 start_pc=0x5cb in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x5cb +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=124 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=124 start_pc=0x5d1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x5d1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=125 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=125 start_pc=0x5dd in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x5dd +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=126 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=127 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=127 start_pc=0x632 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x632 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=128 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=128 start_pc=0x637 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x637 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=129 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=129 start_pc=0x642 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x642 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=130 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=131 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=132 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=132 start_pc=0x65a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x65a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=133 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=134 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=134 start_pc=0x69b in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x69b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=135 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=135 start_pc=0x6d1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x6d1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=136 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=137 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=137 start_pc=0x6e9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x6e9 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=138 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=138 start_pc=0x6f8 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x6f8 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=139 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=139 start_pc=0x701 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x701 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=140 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=140 start_pc=0x706 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x706 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=141 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=141 start_pc=0x70c in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x70c +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=142 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=142 start_pc=0x717 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x717 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=143 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=144 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=144 start_pc=0x72a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x72a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=145 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=145 start_pc=0x730 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x730 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=146 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=147 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=147 start_pc=0x747 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x747 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=148 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=148 start_pc=0x74d in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x74d +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=149 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=150 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=150 start_pc=0x781 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x781 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=151 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=151 start_pc=0x787 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x787 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=152 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=152 start_pc=0x793 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x793 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=153 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=153 start_pc=0x7a5 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x7a5 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=154 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=155 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=155 start_pc=0x7e0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x7e0 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=156 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=156 start_pc=0x7fa in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x7fa +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=157 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=157 start_pc=0x803 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x803 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=158 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=158 start_pc=0x80f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x80f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=159 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=159 start_pc=0x81c in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x81c +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=160 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=160 start_pc=0x844 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x844 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=161 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=161 start_pc=0x854 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x854 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=162 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=162 start_pc=0x861 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x861 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=163 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=163 start_pc=0x868 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x868 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=164 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=164 start_pc=0x874 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x874 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=165 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=165 start_pc=0x881 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x881 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=166 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=166 start_pc=0x887 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x887 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=167 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=167 start_pc=0x88d in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x88d +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=168 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=168 start_pc=0x89a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x89a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=169 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=169 start_pc=0x8a0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x8a0 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=170 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=170 start_pc=0x8b6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x8b6 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=171 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=171 start_pc=0x8ca in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x8ca +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=172 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=172 start_pc=0x8d4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x8d4 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=173 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=173 start_pc=0x8dc in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x8dc +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=174 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=174 start_pc=0x8e1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x8e1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=175 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=175 start_pc=0x8e6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x8e6 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=176 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=176 start_pc=0x958 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x958 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=177 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=177 start_pc=0x95d in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x95d +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=178 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=178 start_pc=0x96e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x96e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=179 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=180 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=181 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=182 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=183 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=184 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=184 start_pc=0x9ea in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x9ea +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=185 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=185 start_pc=0x9fe in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x9fe +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=186 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=187 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=187 start_pc=0xa03 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xa03 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=188 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=188 start_pc=0xa0f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xa0f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=189 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=189 start_pc=0xa16 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xa16 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=190 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=190 start_pc=0xa1c in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xa1c +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=191 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=192 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=192 start_pc=0xa3b in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xa3b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=193 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=193 start_pc=0xa41 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xa41 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=194 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=195 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=195 start_pc=0xa58 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xa58 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=196 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=197 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=198 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=198 start_pc=0xaa4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xaa4 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=199 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=200 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=201 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=201 start_pc=0xb1f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xb1f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=202 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=203 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=204 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=205 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=205 start_pc=0xccb in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xccb +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=206 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=207 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=207 start_pc=0xcda in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xcda +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=208 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=208 start_pc=0xcdf in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xcdf +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=209 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=210 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=210 start_pc=0xced in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xced +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=211 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=212 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=212 start_pc=0xcfb in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xcfb +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=213 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=214 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=214 start_pc=0xd08 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xd08 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=215 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=216 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=217 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=218 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=218 start_pc=0xd67 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xd67 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=219 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=220 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=220 start_pc=0xd89 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xd89 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=221 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=221 start_pc=0xd8e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xd8e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=222 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=222 start_pc=0xd9a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xd9a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=223 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=224 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=225 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=225 start_pc=0xdb1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xdb1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=226 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=227 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=228 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=228 start_pc=0xdf6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xdf6 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=229 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=230 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=231 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=231 start_pc=0xe9f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xe9f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=232 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=233 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=234 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=234 start_pc=0xfe7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xfe7 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=235 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=236 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=237 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=237 start_pc=0x1077 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1077 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=238 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=239 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=240 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=240 start_pc=0x10c3 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x10c3 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=241 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=242 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=243 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=243 start_pc=0x1172 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1172 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=244 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=245 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=246 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=246 start_pc=0x118a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x118a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=247 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=248 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=249 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=249 start_pc=0x11d5 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x11d5 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=250 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=251 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=252 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=252 start_pc=0x1221 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1221 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=253 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=254 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=254 start_pc=0x1230 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1230 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=255 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=256 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=256 start_pc=0x123e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x123e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=257 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=258 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=258 start_pc=0x124b in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x124b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=259 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=260 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=261 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=261 start_pc=0x1310 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1310 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=262 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=263 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=264 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=264 start_pc=0x135c in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x135c +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=265 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=265 start_pc=0x136e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x136e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=266 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=266 start_pc=0x1381 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1381 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=267 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=268 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=268 start_pc=0x138f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x138f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=269 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=270 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=270 start_pc=0x13ab in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x13ab +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=271 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=271 start_pc=0x13b7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x13b7 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=272 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=272 start_pc=0x13c5 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x13c5 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=273 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=274 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=274 start_pc=0x13e1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x13e1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=275 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=276 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=277 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=277 start_pc=0x142d in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x142d +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=278 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=279 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=280 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=280 start_pc=0x1513 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1513 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=281 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=282 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=283 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=283 start_pc=0x1631 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1631 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=284 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=285 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=286 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=286 start_pc=0x1739 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1739 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=287 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=287 start_pc=0x1741 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1741 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=288 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=289 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=290 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=291 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=291 start_pc=0x1892 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1892 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=292 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=293 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=293 start_pc=0x189b in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x189b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=294 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=294 start_pc=0x18a0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x18a0 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=295 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=296 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=296 start_pc=0x18ac in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x18ac +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=297 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=298 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=299 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=299 start_pc=0x199e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x199e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=300 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=301 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=301 start_pc=0x19b1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x19b1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=302 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=303 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=303 start_pc=0x19c4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x19c4 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=304 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=305 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=305 start_pc=0x19d7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x19d7 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=306 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=307 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=307 start_pc=0x19ea in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x19ea +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=308 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=309 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=309 start_pc=0x19fb in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x19fb +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=310 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=311 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=311 start_pc=0x1a08 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1a08 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=312 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=313 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=313 start_pc=0x1a19 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1a19 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=314 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=315 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=315 start_pc=0x1a48 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1a48 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=316 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=316 start_pc=0x1a50 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1a50 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=317 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=317 start_pc=0x1a6b in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1a6b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=318 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=318 start_pc=0x1a72 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1a72 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=319 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=320 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=320 start_pc=0x1a95 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1a95 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=321 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=321 start_pc=0x1a9a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1a9a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=322 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=322 start_pc=0x1a9f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1a9f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=323 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=324 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=325 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=325 start_pc=0x1aa9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1aa9 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=326 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=326 start_pc=0x1ab2 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ab2 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=327 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=328 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=328 start_pc=0x1ac2 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ac2 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=329 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=329 start_pc=0x1acc in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1acc +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=330 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=331 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=331 start_pc=0x1af2 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1af2 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=332 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=333 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=333 start_pc=0x1b00 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1b00 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=334 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=334 start_pc=0x1b0e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1b0e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=335 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=335 start_pc=0x1b15 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1b15 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=336 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=336 start_pc=0x1b1e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1b1e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=337 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=338 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=339 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=339 start_pc=0x1c2d in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1c2d +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=340 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=340 start_pc=0x1c4f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1c4f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=341 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=341 start_pc=0x1c6a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1c6a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=342 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=342 start_pc=0x1c71 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1c71 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=343 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=344 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=344 start_pc=0x1c90 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1c90 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=345 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=345 start_pc=0x1c99 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1c99 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=346 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=346 start_pc=0x1cbb in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1cbb +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=347 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=347 start_pc=0x1cc2 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1cc2 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=348 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=349 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=349 start_pc=0x1ccc in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ccc +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=350 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=350 start_pc=0x1cda in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1cda +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=351 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=351 start_pc=0x1ce1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ce1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=352 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=352 start_pc=0x1ce9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ce9 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=353 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=353 start_pc=0x1cff in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1cff +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=354 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=354 start_pc=0x1d07 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1d07 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=355 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=356 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=356 start_pc=0x1d10 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1d10 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=357 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=358 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=359 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=359 start_pc=0x1d8d in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1d8d +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=360 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=361 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=362 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=362 start_pc=0x1e91 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1e91 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=363 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=363 start_pc=0x1ea4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ea4 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=364 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=364 start_pc=0x1ea9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ea9 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=365 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=365 start_pc=0x1ec1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ec1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=366 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=366 start_pc=0x1ec9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ec9 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=367 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=367 start_pc=0x1edf in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1edf +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=368 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=368 start_pc=0x1ee6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ee6 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=369 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=370 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=371 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=371 start_pc=0x1f08 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f08 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=372 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=372 start_pc=0x1f11 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f11 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=373 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=373 start_pc=0x1f2a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f2a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=374 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=374 start_pc=0x1f31 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f31 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=375 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=375 start_pc=0x1f48 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f48 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=376 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=376 start_pc=0x1f4e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f4e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=377 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=378 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=379 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=379 start_pc=0x1f6f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f6f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=380 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=380 start_pc=0x1f77 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f77 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=381 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=381 start_pc=0x1f82 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f82 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=382 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=382 start_pc=0x1f91 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f91 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=383 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=383 start_pc=0x1f99 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f99 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=384 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=384 start_pc=0x1fa4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1fa4 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=385 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=385 start_pc=0x1faa in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1faa +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=386 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=386 start_pc=0x1fb8 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1fb8 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=387 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=387 start_pc=0x1fc3 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1fc3 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=388 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=388 start_pc=0x1fce in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1fce +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=389 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=389 start_pc=0x1fd5 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1fd5 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=390 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=390 start_pc=0x1fde in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1fde +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=391 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=391 start_pc=0x1ff3 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ff3 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=392 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=392 start_pc=0x1ffa in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ffa +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=393 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=394 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=395 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=395 start_pc=0x2082 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2082 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=396 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=396 start_pc=0x208f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x208f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=397 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=397 start_pc=0x20a0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x20a0 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=398 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=398 start_pc=0x20af in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x20af +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=399 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=399 start_pc=0x20bb in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x20bb +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=400 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=400 start_pc=0x20c8 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x20c8 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=401 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=401 start_pc=0x20dd in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x20dd +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=402 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=402 start_pc=0x20e3 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x20e3 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=403 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=403 start_pc=0x20f0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x20f0 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=404 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=405 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=405 start_pc=0x2105 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2105 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=406 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=406 start_pc=0x210d in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x210d +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=407 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=407 start_pc=0x2120 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2120 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=408 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=409 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=409 start_pc=0x2134 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2134 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=410 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=410 start_pc=0x214d in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x214d +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=411 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=411 start_pc=0x2154 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2154 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=412 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=412 start_pc=0x215e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x215e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=413 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=413 start_pc=0x216a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x216a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=414 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=414 start_pc=0x217e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x217e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=415 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=415 start_pc=0x2184 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2184 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=416 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=417 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=417 start_pc=0x2198 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2198 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=418 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=418 start_pc=0x21a0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x21a0 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=419 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=420 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=420 start_pc=0x21c2 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x21c2 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=421 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=421 start_pc=0x21db in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x21db +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=422 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=422 start_pc=0x21e5 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x21e5 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=423 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=424 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=424 start_pc=0x2207 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2207 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=425 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=426 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=426 start_pc=0x2229 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2229 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=427 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=427 start_pc=0x2233 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2233 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=428 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=428 start_pc=0x2240 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2240 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=429 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=430 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=430 start_pc=0x225b in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x225b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=431 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=431 start_pc=0x2266 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2266 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=432 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=432 start_pc=0x2277 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2277 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=433 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=433 start_pc=0x2286 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2286 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=434 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=434 start_pc=0x2291 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2291 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=435 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=436 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=436 start_pc=0x22b1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x22b1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=437 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=437 start_pc=0x22c2 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x22c2 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=438 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=438 start_pc=0x22ce in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x22ce +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=439 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=440 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=440 start_pc=0x22db in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x22db +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=441 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=441 start_pc=0x22e3 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x22e3 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=442 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=442 start_pc=0x22ef in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x22ef +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=443 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=443 start_pc=0x2305 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2305 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=444 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=444 start_pc=0x230c in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x230c +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=445 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=445 start_pc=0x2318 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2318 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=446 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=446 start_pc=0x231f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x231f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=447 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=447 start_pc=0x2328 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2328 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=448 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=449 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=449 start_pc=0x2338 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2338 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=450 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=450 start_pc=0x2340 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2340 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=451 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=452 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=452 start_pc=0x234c in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x234c +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=453 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=453 start_pc=0x2354 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2354 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=454 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=454 start_pc=0x2364 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2364 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=455 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=455 start_pc=0x237e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x237e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=456 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=456 start_pc=0x238a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x238a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=457 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=457 start_pc=0x2391 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2391 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=458 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=458 start_pc=0x23b1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x23b1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=459 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=459 start_pc=0x23b8 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x23b8 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=460 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=461 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=461 start_pc=0x2481 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2481 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=462 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=463 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=464 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=464 start_pc=0x251e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x251e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=465 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=465 start_pc=0x2542 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2542 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=466 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=466 start_pc=0x254a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x254a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=467 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=467 start_pc=0x2565 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2565 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=468 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=468 start_pc=0x256c in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x256c +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=469 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=469 start_pc=0x2584 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2584 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=470 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=471 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=472 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=472 start_pc=0x2590 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2590 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=473 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=474 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=474 start_pc=0x25a2 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x25a2 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=475 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=475 start_pc=0x25b4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x25b4 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=476 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=476 start_pc=0x25b9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x25b9 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=477 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=477 start_pc=0x25c0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x25c0 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=478 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=478 start_pc=0x25ce in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x25ce +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=479 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=480 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=480 start_pc=0x25ee in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x25ee +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=481 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=481 start_pc=0x25f4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x25f4 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=482 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=482 start_pc=0x260c in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x260c +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=483 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=483 start_pc=0x2613 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2613 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=484 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=484 start_pc=0x261d in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x261d +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=485 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=485 start_pc=0x2626 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2626 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=486 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=486 start_pc=0x262f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x262f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=487 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=487 start_pc=0x2637 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2637 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=488 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=489 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=489 start_pc=0x263f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x263f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=490 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=491 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=492 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=492 start_pc=0x265f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x265f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=493 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=493 start_pc=0x266d in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x266d +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=494 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=494 start_pc=0x2678 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2678 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=495 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=495 start_pc=0x2680 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2680 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=496 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=496 start_pc=0x2686 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2686 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=497 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=498 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=498 start_pc=0x2698 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2698 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=499 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=499 start_pc=0x26b1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x26b1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=500 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=500 start_pc=0x26b6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x26b6 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=501 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=501 start_pc=0x26c0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x26c0 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=502 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=503 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=504 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=504 start_pc=0x2710 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2710 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=505 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=506 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=507 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=507 start_pc=0x275c in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x275c +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=508 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=509 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=510 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=510 start_pc=0x279f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x279f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=511 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=511 start_pc=0x27ca in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x27ca +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=512 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=512 start_pc=0x27d2 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x27d2 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=513 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=513 start_pc=0x27e7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x27e7 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=514 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=514 start_pc=0x27ee in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x27ee +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=515 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=516 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=516 start_pc=0x280d in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x280d +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=517 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=517 start_pc=0x2818 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2818 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=518 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=518 start_pc=0x2826 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2826 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=519 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=519 start_pc=0x283b in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x283b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=520 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=520 start_pc=0x2841 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2841 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=521 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=521 start_pc=0x284e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x284e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=522 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=522 start_pc=0x2854 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2854 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=523 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=523 start_pc=0x2860 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2860 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=524 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=524 start_pc=0x2870 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2870 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=525 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=525 start_pc=0x287f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x287f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=526 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=526 start_pc=0x2889 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2889 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=527 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=527 start_pc=0x2898 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2898 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=528 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=528 start_pc=0x28a4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x28a4 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=529 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=530 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=530 start_pc=0x28b1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x28b1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=531 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=531 start_pc=0x28b9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x28b9 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=532 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=532 start_pc=0x28c4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x28c4 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=533 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=533 start_pc=0x28da in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x28da +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=534 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=534 start_pc=0x28e0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x28e0 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=535 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=535 start_pc=0x28ec in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x28ec +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=536 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=536 start_pc=0x28f3 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x28f3 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=537 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=537 start_pc=0x28fc in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x28fc +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=538 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=539 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=539 start_pc=0x290b in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x290b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=540 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=540 start_pc=0x2913 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2913 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=541 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=542 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=542 start_pc=0x291f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x291f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=543 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=543 start_pc=0x2927 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2927 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=544 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=544 start_pc=0x2936 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2936 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=545 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=545 start_pc=0x2950 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2950 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=546 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=546 start_pc=0x295c in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x295c +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=547 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=547 start_pc=0x2963 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2963 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=548 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=548 start_pc=0x2983 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2983 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=549 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=549 start_pc=0x2989 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2989 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=550 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=550 start_pc=0x2991 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2991 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=551 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=551 start_pc=0x299d in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x299d +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=552 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=553 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=553 start_pc=0x29aa in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x29aa +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=554 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=555 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=555 start_pc=0x29b8 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x29b8 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=556 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=556 start_pc=0x29cb in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x29cb +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=557 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=557 start_pc=0x29d7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x29d7 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=558 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=559 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=559 start_pc=0x29e1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x29e1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=560 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=560 start_pc=0x29eb in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x29eb +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=561 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=561 start_pc=0x29f4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x29f4 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=562 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=562 start_pc=0x29fe in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x29fe +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=563 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=563 start_pc=0x2a07 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a07 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=564 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=565 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=565 start_pc=0x2a14 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a14 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=566 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=567 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=567 start_pc=0x2a2a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a2a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=568 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=568 start_pc=0x2a38 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a38 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=569 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=569 start_pc=0x2a4e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a4e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=570 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=570 start_pc=0x2a57 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a57 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=571 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=571 start_pc=0x2a60 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a60 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=572 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=572 start_pc=0x2a6b in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a6b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=573 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=573 start_pc=0x2a75 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a75 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=574 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=575 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=575 start_pc=0x2a8a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a8a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=576 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=576 start_pc=0x2a96 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a96 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=577 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=577 start_pc=0x2a9e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a9e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=578 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=578 start_pc=0x2aa4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2aa4 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=579 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=579 start_pc=0x2ab1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2ab1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=580 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=580 start_pc=0x2ab7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2ab7 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=581 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=581 start_pc=0x2acd in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2acd +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=582 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=582 start_pc=0x2ad5 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2ad5 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=583 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=584 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=584 start_pc=0x2ae7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2ae7 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=585 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=585 start_pc=0x2af1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2af1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=586 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=586 start_pc=0x2af9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2af9 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=587 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=587 start_pc=0x2b0a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2b0a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=588 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=588 start_pc=0x2b0f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2b0f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=589 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=589 start_pc=0x2b1b in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2b1b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=590 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=591 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=591 start_pc=0x2b34 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2b34 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=592 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=593 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=593 start_pc=0x2b43 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2b43 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=594 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=594 start_pc=0x2b4a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2b4a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=595 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=596 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=597 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=597 start_pc=0x2b70 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2b70 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=598 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=598 start_pc=0x2b7e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2b7e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=599 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=600 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=600 start_pc=0x2b9a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2b9a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=601 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=601 start_pc=0x2ba0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2ba0 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=602 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=603 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=604 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=604 start_pc=0x2bb4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2bb4 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=605 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=605 start_pc=0x2bbf in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2bbf +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=606 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=606 start_pc=0x2bc9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2bc9 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=607 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=607 start_pc=0x2bd3 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2bd3 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=608 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=608 start_pc=0x2bdf in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2bdf +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=609 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=609 start_pc=0x2bea in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2bea +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=610 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=611 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=611 start_pc=0x2bff in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2bff +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=612 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=612 start_pc=0x2c13 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2c13 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=613 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=613 start_pc=0x2c1f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2c1f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=614 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=615 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=615 start_pc=0x2c31 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2c31 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=616 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=616 start_pc=0x2c3a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2c3a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=617 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=617 start_pc=0x2c43 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2c43 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=618 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=619 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=620 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=620 start_pc=0x2c6b in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2c6b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=621 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=621 start_pc=0x2c7c in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2c7c +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=622 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=622 start_pc=0x2c85 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2c85 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=623 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=623 start_pc=0x2c93 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2c93 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=624 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=624 start_pc=0x2ca8 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2ca8 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=625 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=625 start_pc=0x2caf in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2caf +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=626 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=627 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=627 start_pc=0x2cb9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2cb9 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=628 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=629 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=629 start_pc=0x2ccb in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2ccb +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=630 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=630 start_pc=0x2ce1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2ce1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=631 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=631 start_pc=0x2ced in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2ced +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=632 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=633 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=633 start_pc=0x2d60 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2d60 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=634 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=635 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=636 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=636 start_pc=0x2da1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2da1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=637 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=638 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=639 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=639 start_pc=0x2e99 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2e99 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=640 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=641 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=642 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=642 start_pc=0x2f52 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2f52 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=643 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=644 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=645 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=645 start_pc=0x2f95 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2f95 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=646 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=647 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=648 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=648 start_pc=0x2fe1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2fe1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=649 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=649 start_pc=0x305b in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x305b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=650 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=650 start_pc=0x3063 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3063 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=651 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=651 start_pc=0x306a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x306a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=652 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=652 start_pc=0x3071 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3071 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=653 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=653 start_pc=0x308e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x308e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=654 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=654 start_pc=0x3096 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3096 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=655 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=655 start_pc=0x309c in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x309c +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=656 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=656 start_pc=0x30a3 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x30a3 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=657 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=657 start_pc=0x30aa in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x30aa +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=658 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=659 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=659 start_pc=0x30bd in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x30bd +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=660 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=660 start_pc=0x30d0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x30d0 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=661 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=661 start_pc=0x30d7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x30d7 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=662 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=662 start_pc=0x30dd in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x30dd +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=663 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=664 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=664 start_pc=0x30f0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x30f0 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=665 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=665 start_pc=0x30fa in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x30fa +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=666 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=666 start_pc=0x3112 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3112 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=667 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=667 start_pc=0x311b in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x311b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=668 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=669 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=669 start_pc=0x312f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x312f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=670 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=670 start_pc=0x3139 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3139 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=671 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=671 start_pc=0x3146 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3146 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=672 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=672 start_pc=0x3156 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3156 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=673 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=674 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=674 start_pc=0x316d in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x316d +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=675 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=675 start_pc=0x3177 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3177 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=676 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=676 start_pc=0x3188 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3188 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=677 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=677 start_pc=0x3192 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3192 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=678 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=679 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=679 start_pc=0x31a5 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x31a5 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=680 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=680 start_pc=0x31ad in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x31ad +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=681 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=682 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=682 start_pc=0x31cb in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x31cb +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=683 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=683 start_pc=0x31e4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x31e4 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=684 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=684 start_pc=0x31ea in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x31ea +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=685 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=685 start_pc=0x31f4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x31f4 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=686 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=686 start_pc=0x31fd in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x31fd +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=687 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=687 start_pc=0x320d in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x320d +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=688 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=689 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=689 start_pc=0x3220 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3220 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=690 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=690 start_pc=0x3228 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3228 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=691 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=692 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=692 start_pc=0x3246 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3246 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=693 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=693 start_pc=0x325f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x325f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=694 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=694 start_pc=0x3269 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3269 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=695 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=695 start_pc=0x3272 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3272 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=696 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=696 start_pc=0x3280 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3280 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=697 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=697 start_pc=0x328a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x328a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=698 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=698 start_pc=0x3299 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3299 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=699 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=699 start_pc=0x329e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x329e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=700 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=700 start_pc=0x32a3 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x32a3 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=701 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=702 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=702 start_pc=0x32bc in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x32bc +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=703 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=703 start_pc=0x32c6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x32c6 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=704 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=705 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=706 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=706 start_pc=0x32f7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x32f7 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=707 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=707 start_pc=0x3306 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3306 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=708 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=708 start_pc=0x3310 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3310 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=709 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=710 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=710 start_pc=0x3337 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3337 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=711 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=711 start_pc=0x3343 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3343 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=712 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=713 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=713 start_pc=0x334f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x334f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=714 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=714 start_pc=0x3360 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3360 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=715 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=716 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=716 start_pc=0x3368 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3368 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=717 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=717 start_pc=0x3372 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3372 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=718 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=718 start_pc=0x338a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x338a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=719 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=719 start_pc=0x3399 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3399 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=720 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=720 start_pc=0x339e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x339e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=721 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=721 start_pc=0x33b4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x33b4 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=722 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=722 start_pc=0x33c6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x33c6 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=723 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=724 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=724 start_pc=0x33cf in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x33cf +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=725 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=725 start_pc=0x33dd in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x33dd +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=726 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=726 start_pc=0x33e7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x33e7 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=727 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=728 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=728 start_pc=0x33ee in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x33ee +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=729 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=729 start_pc=0x33f8 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x33f8 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=730 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=731 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=731 start_pc=0x340a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x340a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=732 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=732 start_pc=0x340f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x340f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=733 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=734 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=734 start_pc=0x342d in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x342d +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=735 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=735 start_pc=0x3433 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3433 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=736 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=736 start_pc=0x3448 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3448 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=737 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=737 start_pc=0x3450 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3450 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=738 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=739 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=739 start_pc=0x345f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x345f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=740 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=740 start_pc=0x3477 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3477 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=741 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=742 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=743 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=743 start_pc=0x348d in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x348d +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=744 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=744 start_pc=0x34ab in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x34ab +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=745 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=746 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=747 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=747 start_pc=0x34ff in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x34ff +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=748 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=748 start_pc=0x350a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x350a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=749 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=749 start_pc=0x351b in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x351b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=750 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=750 start_pc=0x352a in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x352a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=751 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=751 start_pc=0x3535 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3535 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=752 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=752 start_pc=0x3546 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3546 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=753 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=753 start_pc=0x3552 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3552 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=754 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=755 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=755 start_pc=0x355f in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x355f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=756 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=756 start_pc=0x3567 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3567 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=757 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=757 start_pc=0x3573 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3573 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=758 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=758 start_pc=0x3589 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3589 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=759 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=759 start_pc=0x3595 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3595 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=760 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=760 start_pc=0x359c in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x359c +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=761 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=761 start_pc=0x35a5 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x35a5 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=762 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=763 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=763 start_pc=0x35b5 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x35b5 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=764 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=764 start_pc=0x35bd in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x35bd +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=765 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=766 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=766 start_pc=0x35c9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x35c9 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=767 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=767 start_pc=0x35d1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x35d1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=768 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=768 start_pc=0x35e1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x35e1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=769 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=769 start_pc=0x35fb in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x35fb +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=770 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=770 start_pc=0x3607 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3607 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=771 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=771 start_pc=0x360e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x360e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=772 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=772 start_pc=0x362e in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x362e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=773 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=774 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=775 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=776 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=776 start_pc=0x36ac in_runtime=true pattern_count=2 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36ac pattern_old_value=0x2adf pattern_old_pc=0x2dce +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36ac pattern_old_pc=0x2dce new_pc=0x36aa value_to_store=0x36aa +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36ac pattern_old_value=0x12b pattern_old_pc=0x41a +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36ac pattern_old_pc=0x41a new_pc=0x12b value_to_store=0x12b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=777 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=777 start_pc=0x36ba in_runtime=true pattern_count=1 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36ba pattern_old_value=0x2ae1 pattern_old_pc=0x2dd0 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36ba pattern_old_pc=0x2dd0 new_pc=0x36ac value_to_store=0x36ac +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=778 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=779 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=779 start_pc=0x36c1 in_runtime=true pattern_count=2 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36c1 pattern_old_value=0x2af4 pattern_old_pc=0x2de3 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36c1 pattern_old_pc=0x2de3 new_pc=0x36bf value_to_store=0x36bf +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36c1 pattern_old_value=0xef pattern_old_pc=0x3de +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36c1 pattern_old_pc=0x3de new_pc=0xef value_to_store=0xef +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=780 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=780 start_pc=0x36ce in_runtime=true pattern_count=1 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36ce pattern_old_value=0x2af6 pattern_old_pc=0x2de5 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36ce pattern_old_pc=0x2de5 new_pc=0x36c1 value_to_store=0x36c1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=781 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=782 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=782 start_pc=0x36d5 in_runtime=true pattern_count=2 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36d5 pattern_old_value=0x2b08 pattern_old_pc=0x2df7 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36d5 pattern_old_pc=0x2df7 new_pc=0x36d3 value_to_store=0x36d3 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36d5 pattern_old_value=0x10d pattern_old_pc=0x3fc +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36d5 pattern_old_pc=0x3fc new_pc=0x10d value_to_store=0x10d +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=783 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=783 start_pc=0x36e3 in_runtime=true pattern_count=1 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36e3 pattern_old_value=0x2b0a pattern_old_pc=0x2df9 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36e3 pattern_old_pc=0x2df9 new_pc=0x36d5 value_to_store=0x36d5 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=784 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=785 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=785 start_pc=0x36ea in_runtime=true pattern_count=2 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36ea pattern_old_value=0x2b1d pattern_old_pc=0x2e0c +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36ea pattern_old_pc=0x2e0c new_pc=0x36e8 value_to_store=0x36e8 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36ea pattern_old_value=0xf4 pattern_old_pc=0x3e3 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36ea pattern_old_pc=0x3e3 new_pc=0xf4 value_to_store=0xf4 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=786 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=786 start_pc=0x36f7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x36f7 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=787 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=788 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=788 start_pc=0x36fe in_runtime=true pattern_count=2 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36fe pattern_old_value=0x2b31 pattern_old_pc=0x2e20 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36fe pattern_old_pc=0x2e20 new_pc=0x36fc value_to_store=0x36fc +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36fe pattern_old_value=0xf9 pattern_old_pc=0x3e8 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36fe pattern_old_pc=0x3e8 new_pc=0xf9 value_to_store=0xf9 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=789 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=789 start_pc=0x370b in_runtime=true pattern_count=1 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x370b pattern_old_value=0x2b33 pattern_old_pc=0x2e22 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x370b pattern_old_pc=0x2e22 new_pc=0x36fe value_to_store=0x36fe +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=790 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=791 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=791 start_pc=0x3712 in_runtime=true pattern_count=2 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3712 pattern_old_value=0x2b45 pattern_old_pc=0x2e34 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3712 pattern_old_pc=0x2e34 new_pc=0x3710 value_to_store=0x3710 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3712 pattern_old_value=0x144 pattern_old_pc=0x433 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3712 pattern_old_pc=0x433 new_pc=0x144 value_to_store=0x144 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=792 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=792 start_pc=0x3720 in_runtime=true pattern_count=1 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3720 pattern_old_value=0x2b47 pattern_old_pc=0x2e36 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3720 pattern_old_pc=0x2e36 new_pc=0x3712 value_to_store=0x3712 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=793 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=794 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=794 start_pc=0x3727 in_runtime=true pattern_count=2 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3727 pattern_old_value=0x2b5a pattern_old_pc=0x2e49 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3727 pattern_old_pc=0x2e49 new_pc=0x3725 value_to_store=0x3725 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3727 pattern_old_value=0x108 pattern_old_pc=0x3f7 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3727 pattern_old_pc=0x3f7 new_pc=0x108 value_to_store=0x108 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=795 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=795 start_pc=0x3735 in_runtime=true pattern_count=1 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3735 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=796 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=797 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=797 start_pc=0x373c in_runtime=true pattern_count=2 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x373c pattern_old_value=0x2b6f pattern_old_pc=0x2e5e +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x373c pattern_old_pc=0x2e5e new_pc=0x373a value_to_store=0x373a +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x373c pattern_old_value=0x13a pattern_old_pc=0x429 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x373c pattern_old_pc=0x429 new_pc=0x13a value_to_store=0x13a +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=798 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=798 start_pc=0x374a in_runtime=true pattern_count=1 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x374a pattern_old_value=0x2b71 pattern_old_pc=0x2e60 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x374a pattern_old_pc=0x2e60 new_pc=0x373c value_to_store=0x373c +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=799 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=800 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=800 start_pc=0x3751 in_runtime=true pattern_count=2 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3751 pattern_old_value=0x2b84 pattern_old_pc=0x2e73 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3751 pattern_old_pc=0x2e73 new_pc=0x374f value_to_store=0x374f +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3751 pattern_old_value=0x13f pattern_old_pc=0x42e +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3751 pattern_old_pc=0x42e new_pc=0x13f value_to_store=0x13f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=801 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=801 start_pc=0x375f in_runtime=true pattern_count=1 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x375f pattern_old_value=0x2b86 pattern_old_pc=0x2e75 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x375f pattern_old_pc=0x2e75 new_pc=0x3751 value_to_store=0x3751 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=802 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=803 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=803 start_pc=0x3766 in_runtime=true pattern_count=2 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3766 pattern_old_value=0x2b99 pattern_old_pc=0x2e88 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3766 pattern_old_pc=0x2e88 new_pc=0x3764 value_to_store=0x3764 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3766 pattern_old_value=0x130 pattern_old_pc=0x41f +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3766 pattern_old_pc=0x41f new_pc=0x130 value_to_store=0x130 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=804 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=804 start_pc=0x3774 in_runtime=true pattern_count=1 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3774 pattern_old_value=0x2b9b pattern_old_pc=0x2e8a +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3774 pattern_old_pc=0x2e8a new_pc=0x3766 value_to_store=0x3766 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=805 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=806 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=806 start_pc=0x377b in_runtime=true pattern_count=2 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x377b pattern_old_value=0x2bae pattern_old_pc=0x2e9d +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x377b pattern_old_pc=0x2e9d new_pc=0x3779 value_to_store=0x3779 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x377b pattern_old_value=0x126 pattern_old_pc=0x415 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x377b pattern_old_pc=0x415 new_pc=0x126 value_to_store=0x126 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=807 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=807 start_pc=0x3789 in_runtime=true pattern_count=1 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3789 pattern_old_value=0x2bb0 pattern_old_pc=0x2e9f +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3789 pattern_old_pc=0x2e9f new_pc=0x377b value_to_store=0x377b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=808 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=809 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=809 start_pc=0x3790 in_runtime=true pattern_count=2 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3790 pattern_old_value=0x2bc3 pattern_old_pc=0x2eb2 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3790 pattern_old_pc=0x2eb2 new_pc=0x378e value_to_store=0x378e +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3790 pattern_old_value=0x121 pattern_old_pc=0x410 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3790 pattern_old_pc=0x410 new_pc=0x121 value_to_store=0x121 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=810 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=810 start_pc=0x379e in_runtime=true pattern_count=1 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x379e pattern_old_value=0x2bc5 pattern_old_pc=0x2eb4 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x379e pattern_old_pc=0x2eb4 new_pc=0x3790 value_to_store=0x3790 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=811 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=812 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=812 start_pc=0x37a5 in_runtime=true pattern_count=2 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37a5 pattern_old_value=0x2bd8 pattern_old_pc=0x2ec7 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37a5 pattern_old_pc=0x2ec7 new_pc=0x37a3 value_to_store=0x37a3 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37a5 pattern_old_value=0x103 pattern_old_pc=0x3f2 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37a5 pattern_old_pc=0x3f2 new_pc=0x103 value_to_store=0x103 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=813 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=813 start_pc=0x37b3 in_runtime=true pattern_count=1 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37b3 pattern_old_value=0x2bda pattern_old_pc=0x2ec9 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37b3 pattern_old_pc=0x2ec9 new_pc=0x37a5 value_to_store=0x37a5 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=814 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=815 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=815 start_pc=0x37ba in_runtime=true pattern_count=2 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37ba pattern_old_value=0x2bed pattern_old_pc=0x2edc +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37ba pattern_old_pc=0x2edc new_pc=0x37b8 value_to_store=0x37b8 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37ba pattern_old_value=0xfe pattern_old_pc=0x3ed +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37ba pattern_old_pc=0x3ed new_pc=0xfe value_to_store=0xfe +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=816 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=816 start_pc=0x37c7 in_runtime=true pattern_count=1 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37c7 pattern_old_value=0x2bef pattern_old_pc=0x2ede +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37c7 pattern_old_pc=0x2ede new_pc=0x37ba value_to_store=0x37ba +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=817 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=818 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=818 start_pc=0x37ce in_runtime=true pattern_count=2 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37ce pattern_old_value=0x2c01 pattern_old_pc=0x2ef0 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37ce pattern_old_pc=0x2ef0 new_pc=0x37cc value_to_store=0x37cc +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37ce pattern_old_value=0x117 pattern_old_pc=0x406 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37ce pattern_old_pc=0x406 new_pc=0x117 value_to_store=0x117 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=819 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=819 start_pc=0x37dc in_runtime=true pattern_count=1 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37dc pattern_old_value=0x2c03 pattern_old_pc=0x2ef2 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37dc pattern_old_pc=0x2ef2 new_pc=0x37ce value_to_store=0x37ce +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=820 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=821 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=821 start_pc=0x37e3 in_runtime=true pattern_count=2 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37e3 pattern_old_value=0x2c16 pattern_old_pc=0x2f05 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37e3 pattern_old_pc=0x2f05 new_pc=0x37e1 value_to_store=0x37e1 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37e3 pattern_old_value=0x135 pattern_old_pc=0x424 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37e3 pattern_old_pc=0x424 new_pc=0x135 value_to_store=0x135 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=822 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=822 start_pc=0x37f1 in_runtime=true pattern_count=1 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37f1 pattern_old_value=0x2c18 pattern_old_pc=0x2f07 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37f1 pattern_old_pc=0x2f07 new_pc=0x37e3 value_to_store=0x37e3 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=823 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=824 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=824 start_pc=0x37f8 in_runtime=true pattern_count=2 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37f8 pattern_old_value=0x2c2b pattern_old_pc=0x2f1a +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37f8 pattern_old_pc=0x2f1a new_pc=0x37f6 value_to_store=0x37f6 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37f8 pattern_old_value=0x11c pattern_old_pc=0x40b +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37f8 pattern_old_pc=0x40b new_pc=0x11c value_to_store=0x11c +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=825 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=825 start_pc=0x3806 in_runtime=true pattern_count=1 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3806 pattern_old_value=0x2c2d pattern_old_pc=0x2f1c +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3806 pattern_old_pc=0x2f1c new_pc=0x37f8 value_to_store=0x37f8 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=826 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=827 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=827 start_pc=0x380d in_runtime=true pattern_count=2 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x380d pattern_old_value=0x2c40 pattern_old_pc=0x2f2f +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x380d pattern_old_pc=0x2f2f new_pc=0x380b value_to_store=0x380b +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x380d pattern_old_value=0x112 pattern_old_pc=0x401 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x380d pattern_old_pc=0x401 new_pc=0x112 value_to_store=0x112 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=828 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=828 start_pc=0x381b in_runtime=true pattern_count=1 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x381b pattern_old_value=0x2c42 pattern_old_pc=0x2f31 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x381b pattern_old_pc=0x2f31 new_pc=0x380d value_to_store=0x380d +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=829 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=830 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=830 start_pc=0x3822 in_runtime=true pattern_count=2 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3822 pattern_old_value=0x2c55 pattern_old_pc=0x2f44 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3822 pattern_old_pc=0x2f44 new_pc=0x3820 value_to_store=0x3820 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3822 pattern_old_value=0xea pattern_old_pc=0x3d9 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3822 pattern_old_pc=0x3d9 new_pc=0xea value_to_store=0xea +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=831 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=831 start_pc=0x382f in_runtime=true pattern_count=1 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x382f pattern_old_value=0x2c57 pattern_old_pc=0x2f46 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x382f pattern_old_pc=0x2f46 new_pc=0x3822 value_to_store=0x3822 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=832 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=832 start_pc=0x3834 in_runtime=true pattern_count=3 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3834 pattern_old_value=0x2b55 pattern_old_pc=0x2e44 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3834 pattern_old_pc=0x2e44 new_pc=0x3720 value_to_store=0x3720 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3834 pattern_old_value=0x2b45 pattern_old_pc=0x2e34 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3834 pattern_old_pc=0x2e34 new_pc=0x3710 value_to_store=0x3710 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3834 pattern_old_value=0x2b55 pattern_old_pc=0x2e44 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3834 pattern_old_pc=0x2e44 new_pc=0x3720 value_to_store=0x3720 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=833 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=833 start_pc=0x3846 in_runtime=true pattern_count=3 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3846 pattern_old_value=0x2c8d pattern_old_pc=0x2f7c +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: mapped PC has no block; falling back start_pc=0x3846 pattern_old_pc=0x2f7c mapped_pc=0x3858 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: using control fallback start_pc=0x3846 pattern_old_pc=0x2f7c fallback_value=0x2b94 absolute=0x2b94 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3846 pattern_old_pc=0x2f7c new_pc=0x2b94 value_to_store=0x2b94 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3846 pattern_old_value=0x2b84 pattern_old_pc=0x2e73 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3846 pattern_old_pc=0x2e73 new_pc=0x374f value_to_store=0x374f +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3846 pattern_old_value=0x2b94 pattern_old_pc=0x2e83 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3846 pattern_old_pc=0x2e83 new_pc=0x375f value_to_store=0x375f +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=834 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=834 start_pc=0x385d in_runtime=true pattern_count=3 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x385d pattern_old_value=0x2b7f pattern_old_pc=0x2e6e +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x385d pattern_old_pc=0x2e6e new_pc=0x374a value_to_store=0x374a +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x385d pattern_old_value=0x2b6f pattern_old_pc=0x2e5e +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x385d pattern_old_pc=0x2e5e new_pc=0x373a value_to_store=0x373a +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x385d +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=835 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=835 start_pc=0x386f in_runtime=true pattern_count=3 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x386f pattern_old_value=0x2cb6 pattern_old_pc=0x2fa5 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: mapped PC has no block; falling back start_pc=0x386f pattern_old_pc=0x2fa5 mapped_pc=0x3881 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: using control fallback start_pc=0x386f pattern_old_pc=0x2fa5 fallback_value=0x2c26 absolute=0x2c26 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x386f pattern_old_pc=0x2fa5 new_pc=0x2c26 value_to_store=0x2c26 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x386f pattern_old_value=0x2c16 pattern_old_pc=0x2f05 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x386f pattern_old_pc=0x2f05 new_pc=0x37e1 value_to_store=0x37e1 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x386f pattern_old_value=0x2c26 pattern_old_pc=0x2f15 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x386f pattern_old_pc=0x2f15 new_pc=0x37f1 value_to_store=0x37f1 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=836 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=836 start_pc=0x3886 in_runtime=true pattern_count=3 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3886 pattern_old_value=0x2ba9 pattern_old_pc=0x2e98 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3886 pattern_old_pc=0x2e98 new_pc=0x3774 value_to_store=0x3774 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3886 pattern_old_value=0x2b99 pattern_old_pc=0x2e88 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3886 pattern_old_pc=0x2e88 new_pc=0x3764 value_to_store=0x3764 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3886 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=837 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=837 start_pc=0x3898 in_runtime=true pattern_count=3 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3898 pattern_old_value=0x2cdf pattern_old_pc=0x2fce +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: mapped PC has no block; falling back start_pc=0x3898 pattern_old_pc=0x2fce mapped_pc=0x38aa +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: using control fallback start_pc=0x3898 pattern_old_pc=0x2fce fallback_value=0x2aef absolute=0x2aef +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3898 pattern_old_pc=0x2fce new_pc=0x2aef value_to_store=0x2aef +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3898 pattern_old_value=0x2adf pattern_old_pc=0x2dce +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3898 pattern_old_pc=0x2dce new_pc=0x36aa value_to_store=0x36aa +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3898 pattern_old_value=0x2aef pattern_old_pc=0x2dde +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3898 pattern_old_pc=0x2dde new_pc=0x36ba value_to_store=0x36ba +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=838 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=838 start_pc=0x38af in_runtime=true pattern_count=3 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38af pattern_old_value=0x2bbe pattern_old_pc=0x2ead +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38af pattern_old_pc=0x2ead new_pc=0x3789 value_to_store=0x3789 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38af pattern_old_value=0x2bae pattern_old_pc=0x2e9d +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38af pattern_old_pc=0x2e9d new_pc=0x3779 value_to_store=0x3779 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38af pattern_old_value=0x2bbe pattern_old_pc=0x2ead +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38af pattern_old_pc=0x2ead new_pc=0x3789 value_to_store=0x3789 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=839 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=839 start_pc=0x38c1 in_runtime=true pattern_count=3 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38c1 pattern_old_value=0x2d08 pattern_old_pc=0x2ff7 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: mapped PC has no block; falling back start_pc=0x38c1 pattern_old_pc=0x2ff7 mapped_pc=0x38d3 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: using control fallback start_pc=0x38c1 pattern_old_pc=0x2ff7 fallback_value=0x2bd3 absolute=0x2bd3 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38c1 pattern_old_pc=0x2ff7 new_pc=0x2bd3 value_to_store=0x2bd3 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38c1 pattern_old_value=0x2bc3 pattern_old_pc=0x2eb2 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38c1 pattern_old_pc=0x2eb2 new_pc=0x378e value_to_store=0x378e +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38c1 pattern_old_value=0x2bd3 pattern_old_pc=0x2ec2 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38c1 pattern_old_pc=0x2ec2 new_pc=0x379e value_to_store=0x379e +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=840 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=840 start_pc=0x38d8 in_runtime=true pattern_count=3 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38d8 pattern_old_value=0x2c3b pattern_old_pc=0x2f2a +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38d8 pattern_old_pc=0x2f2a new_pc=0x3806 value_to_store=0x3806 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38d8 pattern_old_value=0x2c2b pattern_old_pc=0x2f1a +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38d8 pattern_old_pc=0x2f1a new_pc=0x37f6 value_to_store=0x37f6 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38d8 pattern_old_value=0x2c3b pattern_old_pc=0x2f2a +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38d8 pattern_old_pc=0x2f2a new_pc=0x3806 value_to_store=0x3806 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=841 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=841 start_pc=0x38ea in_runtime=true pattern_count=3 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38ea pattern_old_value=0x2d31 pattern_old_pc=0x3020 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: mapped PC has no block; falling back start_pc=0x38ea pattern_old_pc=0x3020 mapped_pc=0x38fc +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: using control fallback start_pc=0x38ea pattern_old_pc=0x3020 fallback_value=0x2c11 absolute=0x2c11 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38ea pattern_old_pc=0x3020 new_pc=0x2c11 value_to_store=0x2c11 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38ea pattern_old_value=0x2c01 pattern_old_pc=0x2ef0 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38ea pattern_old_pc=0x2ef0 new_pc=0x37cc value_to_store=0x37cc +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38ea pattern_old_value=0x2c11 pattern_old_pc=0x2f00 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38ea pattern_old_pc=0x2f00 new_pc=0x37dc value_to_store=0x37dc +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=842 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=842 start_pc=0x3901 in_runtime=true pattern_count=3 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3901 pattern_old_value=0x2c50 pattern_old_pc=0x2f3f +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3901 pattern_old_pc=0x2f3f new_pc=0x381b value_to_store=0x381b +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3901 pattern_old_value=0x2c40 pattern_old_pc=0x2f2f +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3901 pattern_old_pc=0x2f2f new_pc=0x380b value_to_store=0x380b +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3901 pattern_old_value=0x2c50 pattern_old_pc=0x2f3f +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3901 pattern_old_pc=0x2f3f new_pc=0x381b value_to_store=0x381b +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=843 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=843 start_pc=0x3913 in_runtime=true pattern_count=3 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3913 pattern_old_value=0x2d5a pattern_old_pc=0x3049 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: mapped PC has no block; falling back start_pc=0x3913 pattern_old_pc=0x3049 mapped_pc=0x3925 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: using control fallback start_pc=0x3913 pattern_old_pc=0x3049 fallback_value=0x33c6 absolute=0x33c6 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3913 pattern_old_pc=0x3049 new_pc=0x33c6 value_to_store=0x33c6 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3913 pattern_old_value=0x2b08 pattern_old_pc=0x2df7 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3913 pattern_old_pc=0x2df7 new_pc=0x36d3 value_to_store=0x36d3 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3913 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=844 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=844 start_pc=0x392a in_runtime=true pattern_count=3 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x392a pattern_old_value=0x2b6a pattern_old_pc=0x2e59 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x392a pattern_old_pc=0x2e59 new_pc=0x3735 value_to_store=0x3735 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x392a pattern_old_value=0x2b5a pattern_old_pc=0x2e49 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x392a pattern_old_pc=0x2e49 new_pc=0x3725 value_to_store=0x3725 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x392a pattern_old_value=0x2b6a pattern_old_pc=0x2e59 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x392a pattern_old_pc=0x2e59 new_pc=0x3735 value_to_store=0x3735 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=845 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=845 start_pc=0x393c in_runtime=true pattern_count=3 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x393c pattern_old_value=0x2d83 pattern_old_pc=0x3072 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: mapped PC has no block; falling back start_pc=0x393c pattern_old_pc=0x3072 mapped_pc=0x394e +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: using control fallback start_pc=0x393c pattern_old_pc=0x3072 fallback_value=0x2be8 absolute=0x2be8 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x393c pattern_old_pc=0x3072 new_pc=0x2be8 value_to_store=0x2be8 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x393c pattern_old_value=0x2bd8 pattern_old_pc=0x2ec7 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x393c pattern_old_pc=0x2ec7 new_pc=0x37a3 value_to_store=0x37a3 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x393c pattern_old_value=0x2be8 pattern_old_pc=0x2ed7 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x393c pattern_old_pc=0x2ed7 new_pc=0x37b3 value_to_store=0x37b3 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=846 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=846 start_pc=0x3953 in_runtime=true pattern_count=3 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3953 pattern_old_value=0x2bfc pattern_old_pc=0x2eeb +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3953 pattern_old_pc=0x2eeb new_pc=0x37c7 value_to_store=0x37c7 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3953 pattern_old_value=0x2bed pattern_old_pc=0x2edc +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3953 pattern_old_pc=0x2edc new_pc=0x37b8 value_to_store=0x37b8 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3953 pattern_old_value=0x2bfc pattern_old_pc=0x2eeb +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3953 pattern_old_pc=0x2eeb new_pc=0x37c7 value_to_store=0x37c7 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=847 has_symbolic_target=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=847 start_pc=0x3965 in_runtime=true pattern_count=3 skip_symbolic_terminal=true +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3965 pattern_old_value=0x2dac pattern_old_pc=0x309b +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: mapped PC has no block; falling back start_pc=0x3965 pattern_old_pc=0x309b mapped_pc=0x3977 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: using control fallback start_pc=0x3965 pattern_old_pc=0x309b fallback_value=0x33ee absolute=0x33ee +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3965 pattern_old_pc=0x309b new_pc=0x33ee value_to_store=0x33ee +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3965 pattern_old_value=0x2b31 pattern_old_pc=0x2e20 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3965 pattern_old_pc=0x2e20 new_pc=0x36fc value_to_store=0x36fc +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3965 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=848 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=848 start_pc=0x397c in_runtime=true pattern_count=3 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x397c pattern_old_value=0x2b2c pattern_old_pc=0x2e1b +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x397c pattern_old_pc=0x2e1b new_pc=0x36f7 value_to_store=0x36f7 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x397c pattern_old_value=0x2b1d pattern_old_pc=0x2e0c +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x397c pattern_old_pc=0x2e0c new_pc=0x36e8 value_to_store=0x36e8 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x397c pattern_old_value=0x2b2c pattern_old_pc=0x2e1b +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x397c pattern_old_pc=0x2e1b new_pc=0x36f7 value_to_store=0x36f7 +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=849 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=849 start_pc=0x398e in_runtime=true pattern_count=3 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x398e pattern_old_value=0x2dd5 pattern_old_pc=0x30c4 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: mapped PC has no block; falling back start_pc=0x398e pattern_old_pc=0x30c4 mapped_pc=0x39a0 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: using control fallback start_pc=0x398e pattern_old_pc=0x30c4 fallback_value=0x2b03 absolute=0x2b03 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x398e pattern_old_pc=0x30c4 new_pc=0x2b03 value_to_store=0x2b03 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x398e pattern_old_value=0x2af4 pattern_old_pc=0x2de3 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x398e pattern_old_pc=0x2de3 new_pc=0x36bf value_to_store=0x36bf +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x398e pattern_old_value=0x2b03 pattern_old_pc=0x2df2 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x398e pattern_old_pc=0x2df2 new_pc=0x36ce value_to_store=0x36ce +DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=850 has_symbolic_target=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=850 start_pc=0x39a5 in_runtime=true pattern_count=3 skip_symbolic_terminal=false +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x39a5 pattern_old_value=0x2c64 pattern_old_pc=0x2f53 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x39a5 pattern_old_pc=0x2f53 new_pc=0x382f value_to_store=0x382f +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x39a5 pattern_old_value=0x2c55 pattern_old_pc=0x2f44 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x39a5 pattern_old_pc=0x2f44 new_pc=0x3820 value_to_store=0x3820 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x39a5 pattern_old_value=0x2c64 pattern_old_pc=0x2f53 +DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x39a5 pattern_old_pc=0x2f53 new_pc=0x382f value_to_store=0x382f +DEBUG azoth_transform::obfuscator: Patched jump immediates after PC reindexing +DEBUG azoth_transform::obfuscator: Re-applying 19 dispatcher jump target patches with remapped controller PCs +DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x046f7da2 old_controller_pc=0x2f58 new_controller_pc=0x3834 old_pc=0x030d new_pc=0x001e controller_rel=0x3834 +DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x1aa7c0ec old_controller_pc=0x2f6a new_controller_pc=0x3846 old_pc=0x0318 new_pc=0x0029 controller_rel=0x3846 +DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x2feef2ec old_controller_pc=0x2f81 new_controller_pc=0x385d old_pc=0x0323 new_pc=0x0034 controller_rel=0x385d +DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x308657d7 old_controller_pc=0x2f93 new_controller_pc=0x386f old_pc=0x032e new_pc=0x003f controller_rel=0x386f +DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x33ee5f35 old_controller_pc=0x2faa new_controller_pc=0x3886 old_pc=0x0339 new_pc=0x004a controller_rel=0x3886 +DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x3ccfd60b old_controller_pc=0x2fbc new_controller_pc=0x3898 old_pc=0x0344 new_pc=0x0055 controller_rel=0x3898 +DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x5a4fd645 old_controller_pc=0x2fd3 new_controller_pc=0x38af old_pc=0x034f new_pc=0x0060 controller_rel=0x38af +DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x80f323a7 old_controller_pc=0x2fe5 new_controller_pc=0x38c1 old_pc=0x035a new_pc=0x006b controller_rel=0x38c1 +DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x81972d00 old_controller_pc=0x2ffc new_controller_pc=0x38d8 old_pc=0x0365 new_pc=0x0076 controller_rel=0x38d8 +DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x8677ab23 old_controller_pc=0x300e new_controller_pc=0x38ea old_pc=0x0370 new_pc=0x0081 controller_rel=0x38ea +DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x8bd03d0a old_controller_pc=0x3025 new_controller_pc=0x3901 old_pc=0x037b new_pc=0x008c controller_rel=0x3901 +DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x9940686e old_controller_pc=0x3037 new_controller_pc=0x3913 old_pc=0x0386 new_pc=0x0097 controller_rel=0x3913 +DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0xa65e2cfd old_controller_pc=0x304e new_controller_pc=0x392a old_pc=0x0391 new_pc=0x00a2 controller_rel=0x392a +DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0xcb766a56 old_controller_pc=0x3060 new_controller_pc=0x393c old_pc=0x039c new_pc=0x00ad controller_rel=0x393c +DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0xd415b3f9 old_controller_pc=0x3077 new_controller_pc=0x3953 old_pc=0x03a7 new_pc=0x00b8 controller_rel=0x3953 +DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0xd4899a62 old_controller_pc=0x3089 new_controller_pc=0x3965 old_pc=0x03b2 new_pc=0x00c3 controller_rel=0x3965 +DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0xede7f6a3 old_controller_pc=0x30a0 new_controller_pc=0x397c old_pc=0x03bd new_pc=0x00ce controller_rel=0x397c +DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0xf3a504f2 old_controller_pc=0x30b2 new_controller_pc=0x398e old_pc=0x03c8 new_pc=0x00d9 controller_rel=0x398e +DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0xfe03a460 old_controller_pc=0x30c9 new_controller_pc=0x39a5 old_pc=0x03d2 new_pc=0x00e3 controller_rel=0x39a5 +DEBUG azoth_transform::obfuscator: Dispatcher jump target patches re-applied successfully +DEBUG azoth_transform::obfuscator: Updated controller PC for 0x2feef2ec: 0x2f81 -> 0x385d +DEBUG azoth_transform::obfuscator: Updated controller PC for 0x80f323a7: 0x2fe5 -> 0x38c1 +DEBUG azoth_transform::obfuscator: Updated controller PC for 0x5a4fd645: 0x2fd3 -> 0x38af +DEBUG azoth_transform::obfuscator: Updated controller PC for 0x1aa7c0ec: 0x2f6a -> 0x3846 +DEBUG azoth_transform::obfuscator: Updated controller PC for 0x3ccfd60b: 0x2fbc -> 0x3898 +DEBUG azoth_transform::obfuscator: Updated controller PC for 0x81972d00: 0x2ffc -> 0x38d8 +DEBUG azoth_transform::obfuscator: Updated controller PC for 0x8677ab23: 0x300e -> 0x38ea +DEBUG azoth_transform::obfuscator: Updated controller PC for 0xd4899a62: 0x3089 -> 0x3965 +DEBUG azoth_transform::obfuscator: Updated controller PC for 0xf3a504f2: 0x30b2 -> 0x398e +DEBUG azoth_transform::obfuscator: Updated controller PC for 0x308657d7: 0x2f93 -> 0x386f +DEBUG azoth_transform::obfuscator: Updated controller PC for 0x8bd03d0a: 0x3025 -> 0x3901 +DEBUG azoth_transform::obfuscator: Updated controller PC for 0xd415b3f9: 0x3077 -> 0x3953 +DEBUG azoth_transform::obfuscator: Updated controller PC for 0xfe03a460: 0x30c9 -> 0x39a5 +DEBUG azoth_transform::obfuscator: Updated controller PC for 0x9940686e: 0x3037 -> 0x3913 +DEBUG azoth_transform::obfuscator: Updated controller PC for 0x33ee5f35: 0x2faa -> 0x3886 +DEBUG azoth_transform::obfuscator: Updated controller PC for 0x046f7da2: 0x2f58 -> 0x3834 +DEBUG azoth_transform::obfuscator: Updated controller PC for 0xcb766a56: 0x3060 -> 0x393c +DEBUG azoth_transform::obfuscator: Updated controller PC for 0xede7f6a3: 0x30a0 -> 0x397c +DEBUG azoth_transform::obfuscator: Updated controller PC for 0xa65e2cfd: 0x304e -> 0x392a +DEBUG azoth_transform::obfuscator: Re-applying 19 stub patches with remapped decoy PCs +DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(776): start_pc=0x36ac, first_instr_pc=0x36ac, instruction_count=8 +DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(776), push_width=2, new_decoy_pc=0x36ac, old_pc=0x2ddf, new_pc=0x36bb, decoy_rel=0x36ac +DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(779): start_pc=0x36c1, first_instr_pc=0x36c1, instruction_count=8 +DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(779), push_width=2, new_decoy_pc=0x36c1, old_pc=0x2df3, new_pc=0x36cf, decoy_rel=0x36c1 +DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(782): start_pc=0x36d5, first_instr_pc=0x36d5, instruction_count=8 +DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(782), push_width=2, new_decoy_pc=0x36d5, old_pc=0x2e08, new_pc=0x36e4, decoy_rel=0x36d5 +DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(785): start_pc=0x36ea, first_instr_pc=0x36ea, instruction_count=8 +DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(785), push_width=2, new_decoy_pc=0x36ea, old_pc=0x2e1c, new_pc=0x36f8, decoy_rel=0x36ea +DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(788): start_pc=0x36fe, first_instr_pc=0x36fe, instruction_count=8 +DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(788), push_width=2, new_decoy_pc=0x36fe, old_pc=0x2e30, new_pc=0x370c, decoy_rel=0x36fe +DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(791): start_pc=0x3712, first_instr_pc=0x3712, instruction_count=8 +DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(791), push_width=2, new_decoy_pc=0x3712, old_pc=0x2e45, new_pc=0x3721, decoy_rel=0x3712 +DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(794): start_pc=0x3727, first_instr_pc=0x3727, instruction_count=8 +DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(794), push_width=2, new_decoy_pc=0x3727, old_pc=0x2e5a, new_pc=0x3736, decoy_rel=0x3727 +DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(797): start_pc=0x373c, first_instr_pc=0x373c, instruction_count=8 +DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(797), push_width=2, new_decoy_pc=0x373c, old_pc=0x2e6f, new_pc=0x374b, decoy_rel=0x373c +DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(800): start_pc=0x3751, first_instr_pc=0x3751, instruction_count=8 +DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(800), push_width=2, new_decoy_pc=0x3751, old_pc=0x2e84, new_pc=0x3760, decoy_rel=0x3751 +DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(803): start_pc=0x3766, first_instr_pc=0x3766, instruction_count=8 +DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(803), push_width=2, new_decoy_pc=0x3766, old_pc=0x2e99, new_pc=0x3775, decoy_rel=0x3766 +DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(806): start_pc=0x377b, first_instr_pc=0x377b, instruction_count=8 +DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(806), push_width=2, new_decoy_pc=0x377b, old_pc=0x2eae, new_pc=0x378a, decoy_rel=0x377b +DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(809): start_pc=0x3790, first_instr_pc=0x3790, instruction_count=8 +DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(809), push_width=2, new_decoy_pc=0x3790, old_pc=0x2ec3, new_pc=0x379f, decoy_rel=0x3790 +DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(812): start_pc=0x37a5, first_instr_pc=0x37a5, instruction_count=8 +DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(812), push_width=2, new_decoy_pc=0x37a5, old_pc=0x2ed8, new_pc=0x37b4, decoy_rel=0x37a5 +DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(815): start_pc=0x37ba, first_instr_pc=0x37ba, instruction_count=8 +DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(815), push_width=2, new_decoy_pc=0x37ba, old_pc=0x2eec, new_pc=0x37c8, decoy_rel=0x37ba +DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(818): start_pc=0x37ce, first_instr_pc=0x37ce, instruction_count=8 +DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(818), push_width=2, new_decoy_pc=0x37ce, old_pc=0x2f01, new_pc=0x37dd, decoy_rel=0x37ce +DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(821): start_pc=0x37e3, first_instr_pc=0x37e3, instruction_count=8 +DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(821), push_width=2, new_decoy_pc=0x37e3, old_pc=0x2f16, new_pc=0x37f2, decoy_rel=0x37e3 +DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(824): start_pc=0x37f8, first_instr_pc=0x37f8, instruction_count=8 +DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(824), push_width=2, new_decoy_pc=0x37f8, old_pc=0x2f2b, new_pc=0x3807, decoy_rel=0x37f8 +DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(827): start_pc=0x380d, first_instr_pc=0x380d, instruction_count=8 +DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(827), push_width=2, new_decoy_pc=0x380d, old_pc=0x2f40, new_pc=0x381c, decoy_rel=0x380d +DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(830): start_pc=0x3822, first_instr_pc=0x3822, instruction_count=8 +DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(830), push_width=2, new_decoy_pc=0x3822, old_pc=0x2f54, new_pc=0x3830, decoy_rel=0x3822 +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(777) instr pc=0x36ba op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(777) instr pc=0x36bb op=PUSH(2) imm=Some("36ac") +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(777) instr pc=0x36be op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(776) instr pc=0x36ac op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(776) instr pc=0x36ad op=PUSH(1) imm=Some("01") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(776) instr pc=0x36af op=PUSH(1) imm=Some("00") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(776) instr pc=0x36b1 op=EQ imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(776) instr pc=0x36b2 op=PUSH(2) imm=Some("36aa") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(776) instr pc=0x36b5 op=JUMPI imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(776) instr pc=0x36b6 op=PUSH(2) imm=Some("012b") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(776) instr pc=0x36b9 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(780) instr pc=0x36ce op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(780) instr pc=0x36cf op=PUSH(2) imm=Some("36c1") +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(780) instr pc=0x36d2 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(779) instr pc=0x36c1 op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(779) instr pc=0x36c2 op=PUSH(1) imm=Some("01") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(779) instr pc=0x36c4 op=PUSH(1) imm=Some("00") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(779) instr pc=0x36c6 op=EQ imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(779) instr pc=0x36c7 op=PUSH(2) imm=Some("36bf") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(779) instr pc=0x36ca op=JUMPI imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(779) instr pc=0x36cb op=PUSH(1) imm=Some("ef") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(779) instr pc=0x36cd op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(783) instr pc=0x36e3 op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(783) instr pc=0x36e4 op=PUSH(2) imm=Some("36d5") +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(783) instr pc=0x36e7 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(782) instr pc=0x36d5 op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(782) instr pc=0x36d6 op=PUSH(1) imm=Some("01") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(782) instr pc=0x36d8 op=PUSH(1) imm=Some("00") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(782) instr pc=0x36da op=EQ imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(782) instr pc=0x36db op=PUSH(2) imm=Some("36d3") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(782) instr pc=0x36de op=JUMPI imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(782) instr pc=0x36df op=PUSH(2) imm=Some("010d") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(782) instr pc=0x36e2 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(786) instr pc=0x36f7 op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(786) instr pc=0x36f8 op=PUSH(2) imm=Some("36ea") +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(786) instr pc=0x36fb op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(785) instr pc=0x36ea op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(785) instr pc=0x36eb op=PUSH(1) imm=Some("01") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(785) instr pc=0x36ed op=PUSH(1) imm=Some("00") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(785) instr pc=0x36ef op=EQ imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(785) instr pc=0x36f0 op=PUSH(2) imm=Some("36e8") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(785) instr pc=0x36f3 op=JUMPI imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(785) instr pc=0x36f4 op=PUSH(1) imm=Some("f4") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(785) instr pc=0x36f6 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(789) instr pc=0x370b op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(789) instr pc=0x370c op=PUSH(2) imm=Some("36fe") +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(789) instr pc=0x370f op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(788) instr pc=0x36fe op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(788) instr pc=0x36ff op=PUSH(1) imm=Some("01") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(788) instr pc=0x3701 op=PUSH(1) imm=Some("00") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(788) instr pc=0x3703 op=EQ imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(788) instr pc=0x3704 op=PUSH(2) imm=Some("36fc") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(788) instr pc=0x3707 op=JUMPI imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(788) instr pc=0x3708 op=PUSH(1) imm=Some("f9") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(788) instr pc=0x370a op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(792) instr pc=0x3720 op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(792) instr pc=0x3721 op=PUSH(2) imm=Some("3712") +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(792) instr pc=0x3724 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(791) instr pc=0x3712 op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(791) instr pc=0x3713 op=PUSH(1) imm=Some("01") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(791) instr pc=0x3715 op=PUSH(1) imm=Some("00") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(791) instr pc=0x3717 op=EQ imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(791) instr pc=0x3718 op=PUSH(2) imm=Some("3710") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(791) instr pc=0x371b op=JUMPI imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(791) instr pc=0x371c op=PUSH(2) imm=Some("0144") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(791) instr pc=0x371f op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(795) instr pc=0x3735 op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(795) instr pc=0x3736 op=PUSH(2) imm=Some("3727") +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(795) instr pc=0x3739 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(794) instr pc=0x3727 op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(794) instr pc=0x3728 op=PUSH(1) imm=Some("01") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(794) instr pc=0x372a op=PUSH(1) imm=Some("00") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(794) instr pc=0x372c op=EQ imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(794) instr pc=0x372d op=PUSH(2) imm=Some("3725") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(794) instr pc=0x3730 op=JUMPI imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(794) instr pc=0x3731 op=PUSH(2) imm=Some("0108") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(794) instr pc=0x3734 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(798) instr pc=0x374a op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(798) instr pc=0x374b op=PUSH(2) imm=Some("373c") +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(798) instr pc=0x374e op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(797) instr pc=0x373c op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(797) instr pc=0x373d op=PUSH(1) imm=Some("01") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(797) instr pc=0x373f op=PUSH(1) imm=Some("00") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(797) instr pc=0x3741 op=EQ imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(797) instr pc=0x3742 op=PUSH(2) imm=Some("373a") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(797) instr pc=0x3745 op=JUMPI imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(797) instr pc=0x3746 op=PUSH(2) imm=Some("013a") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(797) instr pc=0x3749 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(801) instr pc=0x375f op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(801) instr pc=0x3760 op=PUSH(2) imm=Some("3751") +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(801) instr pc=0x3763 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(800) instr pc=0x3751 op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(800) instr pc=0x3752 op=PUSH(1) imm=Some("01") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(800) instr pc=0x3754 op=PUSH(1) imm=Some("00") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(800) instr pc=0x3756 op=EQ imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(800) instr pc=0x3757 op=PUSH(2) imm=Some("374f") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(800) instr pc=0x375a op=JUMPI imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(800) instr pc=0x375b op=PUSH(2) imm=Some("013f") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(800) instr pc=0x375e op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(804) instr pc=0x3774 op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(804) instr pc=0x3775 op=PUSH(2) imm=Some("3766") +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(804) instr pc=0x3778 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(803) instr pc=0x3766 op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(803) instr pc=0x3767 op=PUSH(1) imm=Some("01") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(803) instr pc=0x3769 op=PUSH(1) imm=Some("00") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(803) instr pc=0x376b op=EQ imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(803) instr pc=0x376c op=PUSH(2) imm=Some("3764") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(803) instr pc=0x376f op=JUMPI imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(803) instr pc=0x3770 op=PUSH(2) imm=Some("0130") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(803) instr pc=0x3773 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(807) instr pc=0x3789 op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(807) instr pc=0x378a op=PUSH(2) imm=Some("377b") +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(807) instr pc=0x378d op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(806) instr pc=0x377b op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(806) instr pc=0x377c op=PUSH(1) imm=Some("01") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(806) instr pc=0x377e op=PUSH(1) imm=Some("00") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(806) instr pc=0x3780 op=EQ imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(806) instr pc=0x3781 op=PUSH(2) imm=Some("3779") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(806) instr pc=0x3784 op=JUMPI imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(806) instr pc=0x3785 op=PUSH(2) imm=Some("0126") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(806) instr pc=0x3788 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(810) instr pc=0x379e op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(810) instr pc=0x379f op=PUSH(2) imm=Some("3790") +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(810) instr pc=0x37a2 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(809) instr pc=0x3790 op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(809) instr pc=0x3791 op=PUSH(1) imm=Some("01") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(809) instr pc=0x3793 op=PUSH(1) imm=Some("00") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(809) instr pc=0x3795 op=EQ imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(809) instr pc=0x3796 op=PUSH(2) imm=Some("378e") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(809) instr pc=0x3799 op=JUMPI imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(809) instr pc=0x379a op=PUSH(2) imm=Some("0121") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(809) instr pc=0x379d op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(813) instr pc=0x37b3 op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(813) instr pc=0x37b4 op=PUSH(2) imm=Some("37a5") +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(813) instr pc=0x37b7 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(812) instr pc=0x37a5 op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(812) instr pc=0x37a6 op=PUSH(1) imm=Some("01") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(812) instr pc=0x37a8 op=PUSH(1) imm=Some("00") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(812) instr pc=0x37aa op=EQ imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(812) instr pc=0x37ab op=PUSH(2) imm=Some("37a3") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(812) instr pc=0x37ae op=JUMPI imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(812) instr pc=0x37af op=PUSH(2) imm=Some("0103") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(812) instr pc=0x37b2 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(816) instr pc=0x37c7 op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(816) instr pc=0x37c8 op=PUSH(2) imm=Some("37ba") +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(816) instr pc=0x37cb op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(815) instr pc=0x37ba op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(815) instr pc=0x37bb op=PUSH(1) imm=Some("01") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(815) instr pc=0x37bd op=PUSH(1) imm=Some("00") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(815) instr pc=0x37bf op=EQ imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(815) instr pc=0x37c0 op=PUSH(2) imm=Some("37b8") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(815) instr pc=0x37c3 op=JUMPI imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(815) instr pc=0x37c4 op=PUSH(1) imm=Some("fe") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(815) instr pc=0x37c6 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(819) instr pc=0x37dc op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(819) instr pc=0x37dd op=PUSH(2) imm=Some("37ce") +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(819) instr pc=0x37e0 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(818) instr pc=0x37ce op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(818) instr pc=0x37cf op=PUSH(1) imm=Some("01") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(818) instr pc=0x37d1 op=PUSH(1) imm=Some("00") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(818) instr pc=0x37d3 op=EQ imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(818) instr pc=0x37d4 op=PUSH(2) imm=Some("37cc") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(818) instr pc=0x37d7 op=JUMPI imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(818) instr pc=0x37d8 op=PUSH(2) imm=Some("0117") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(818) instr pc=0x37db op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(822) instr pc=0x37f1 op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(822) instr pc=0x37f2 op=PUSH(2) imm=Some("37e3") +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(822) instr pc=0x37f5 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(821) instr pc=0x37e3 op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(821) instr pc=0x37e4 op=PUSH(1) imm=Some("01") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(821) instr pc=0x37e6 op=PUSH(1) imm=Some("00") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(821) instr pc=0x37e8 op=EQ imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(821) instr pc=0x37e9 op=PUSH(2) imm=Some("37e1") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(821) instr pc=0x37ec op=JUMPI imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(821) instr pc=0x37ed op=PUSH(2) imm=Some("0135") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(821) instr pc=0x37f0 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(825) instr pc=0x3806 op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(825) instr pc=0x3807 op=PUSH(2) imm=Some("37f8") +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(825) instr pc=0x380a op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(824) instr pc=0x37f8 op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(824) instr pc=0x37f9 op=PUSH(1) imm=Some("01") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(824) instr pc=0x37fb op=PUSH(1) imm=Some("00") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(824) instr pc=0x37fd op=EQ imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(824) instr pc=0x37fe op=PUSH(2) imm=Some("37f6") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(824) instr pc=0x3801 op=JUMPI imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(824) instr pc=0x3802 op=PUSH(2) imm=Some("011c") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(824) instr pc=0x3805 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(828) instr pc=0x381b op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(828) instr pc=0x381c op=PUSH(2) imm=Some("380d") +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(828) instr pc=0x381f op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(827) instr pc=0x380d op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(827) instr pc=0x380e op=PUSH(1) imm=Some("01") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(827) instr pc=0x3810 op=PUSH(1) imm=Some("00") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(827) instr pc=0x3812 op=EQ imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(827) instr pc=0x3813 op=PUSH(2) imm=Some("380b") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(827) instr pc=0x3816 op=JUMPI imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(827) instr pc=0x3817 op=PUSH(2) imm=Some("0112") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(827) instr pc=0x381a op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(831) instr pc=0x382f op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(831) instr pc=0x3830 op=PUSH(2) imm=Some("3822") +DEBUG azoth_transform::obfuscator: Stub node NodeIndex(831) instr pc=0x3833 op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(830) instr pc=0x3822 op=JUMPDEST imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(830) instr pc=0x3823 op=PUSH(1) imm=Some("01") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(830) instr pc=0x3825 op=PUSH(1) imm=Some("00") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(830) instr pc=0x3827 op=EQ imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(830) instr pc=0x3828 op=PUSH(2) imm=Some("3820") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(830) instr pc=0x382b op=JUMPI imm=None +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(830) instr pc=0x382c op=PUSH(1) imm=Some("ea") +DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(830) instr pc=0x382e op=JUMP imm=None +DEBUG azoth_transform::obfuscator: Stub patches re-applied successfully +DEBUG azoth_transform::obfuscator: Re-applying 19 decoy patches with remapped target PCs +DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(776), push_width=2, old_target_pc=0x041a, new_target_pc=0x012b, old_pc=0x2dda, new_pc=0x36b6, target_rel=0x012b +DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(779), push_width=1, old_target_pc=0x03de, new_target_pc=0x00ef, old_pc=0x2def, new_pc=0x36cb, target_rel=0x00ef +DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(782), push_width=2, old_target_pc=0x03fc, new_target_pc=0x010d, old_pc=0x2e03, new_pc=0x36df, target_rel=0x010d +DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(785), push_width=1, old_target_pc=0x03e3, new_target_pc=0x00f4, old_pc=0x2e18, new_pc=0x36f4, target_rel=0x00f4 +DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(788), push_width=1, old_target_pc=0x03e8, new_target_pc=0x00f9, old_pc=0x2e2c, new_pc=0x3708, target_rel=0x00f9 +DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(791), push_width=2, old_target_pc=0x0433, new_target_pc=0x0144, old_pc=0x2e40, new_pc=0x371c, target_rel=0x0144 +DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(794), push_width=2, old_target_pc=0x03f7, new_target_pc=0x0108, old_pc=0x2e55, new_pc=0x3731, target_rel=0x0108 +DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(797), push_width=2, old_target_pc=0x0429, new_target_pc=0x013a, old_pc=0x2e6a, new_pc=0x3746, target_rel=0x013a +DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(800), push_width=2, old_target_pc=0x042e, new_target_pc=0x013f, old_pc=0x2e7f, new_pc=0x375b, target_rel=0x013f +DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(803), push_width=2, old_target_pc=0x041f, new_target_pc=0x0130, old_pc=0x2e94, new_pc=0x3770, target_rel=0x0130 +DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(806), push_width=2, old_target_pc=0x0415, new_target_pc=0x0126, old_pc=0x2ea9, new_pc=0x3785, target_rel=0x0126 +DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(809), push_width=2, old_target_pc=0x0410, new_target_pc=0x0121, old_pc=0x2ebe, new_pc=0x379a, target_rel=0x0121 +DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(812), push_width=2, old_target_pc=0x03f2, new_target_pc=0x0103, old_pc=0x2ed3, new_pc=0x37af, target_rel=0x0103 +DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(815), push_width=1, old_target_pc=0x03ed, new_target_pc=0x00fe, old_pc=0x2ee8, new_pc=0x37c4, target_rel=0x00fe +DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(818), push_width=2, old_target_pc=0x0406, new_target_pc=0x0117, old_pc=0x2efc, new_pc=0x37d8, target_rel=0x0117 +DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(821), push_width=2, old_target_pc=0x0424, new_target_pc=0x0135, old_pc=0x2f11, new_pc=0x37ed, target_rel=0x0135 +DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(824), push_width=2, old_target_pc=0x040b, new_target_pc=0x011c, old_pc=0x2f26, new_pc=0x3802, target_rel=0x011c +DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(827), push_width=2, old_target_pc=0x0401, new_target_pc=0x0112, old_pc=0x2f3b, new_pc=0x3817, target_rel=0x0112 +DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(830), push_width=1, old_target_pc=0x03d9, new_target_pc=0x00ea, old_pc=0x2f50, new_pc=0x382c, target_rel=0x00ea +DEBUG azoth_transform::obfuscator: Decoy patches re-applied successfully +DEBUG azoth_transform::obfuscator: Re-applying 57 controller patches with remapped jump targets +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e44 new_target_pc=0x3720 old_push_pc=0x2f5e new_push_pc=0x383a target_rel=0x3720 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e34 new_target_pc=0x3710 old_push_pc=0x2f62 new_push_pc=0x383e target_rel=0x3710 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e44 new_target_pc=0x3720 old_push_pc=0x2f66 new_push_pc=0x3842 target_rel=0x3720 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f7c new_target_pc=0x3858 old_push_pc=0x2f74 new_push_pc=0x3850 target_rel=0x3858 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e73 new_target_pc=0x374f old_push_pc=0x2f78 new_push_pc=0x3854 target_rel=0x374f +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e83 new_target_pc=0x375f old_push_pc=0x2f7d new_push_pc=0x3859 target_rel=0x375f +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e6e new_target_pc=0x374a old_push_pc=0x2f87 new_push_pc=0x3863 target_rel=0x374a +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e5e new_target_pc=0x373a old_push_pc=0x2f8b new_push_pc=0x3867 target_rel=0x373a +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e6e new_target_pc=0x374a old_push_pc=0x2f8f new_push_pc=0x386b target_rel=0x374a +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2fa5 new_target_pc=0x3881 old_push_pc=0x2f9d new_push_pc=0x3879 target_rel=0x3881 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f05 new_target_pc=0x37e1 old_push_pc=0x2fa1 new_push_pc=0x387d target_rel=0x37e1 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f15 new_target_pc=0x37f1 old_push_pc=0x2fa6 new_push_pc=0x3882 target_rel=0x37f1 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e98 new_target_pc=0x3774 old_push_pc=0x2fb0 new_push_pc=0x388c target_rel=0x3774 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e88 new_target_pc=0x3764 old_push_pc=0x2fb4 new_push_pc=0x3890 target_rel=0x3764 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e98 new_target_pc=0x3774 old_push_pc=0x2fb8 new_push_pc=0x3894 target_rel=0x3774 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2fce new_target_pc=0x38aa old_push_pc=0x2fc6 new_push_pc=0x38a2 target_rel=0x38aa +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2dce new_target_pc=0x36aa old_push_pc=0x2fca new_push_pc=0x38a6 target_rel=0x36aa +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2dde new_target_pc=0x36ba old_push_pc=0x2fcf new_push_pc=0x38ab target_rel=0x36ba +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2ead new_target_pc=0x3789 old_push_pc=0x2fd9 new_push_pc=0x38b5 target_rel=0x3789 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e9d new_target_pc=0x3779 old_push_pc=0x2fdd new_push_pc=0x38b9 target_rel=0x3779 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2ead new_target_pc=0x3789 old_push_pc=0x2fe1 new_push_pc=0x38bd target_rel=0x3789 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2ff7 new_target_pc=0x38d3 old_push_pc=0x2fef new_push_pc=0x38cb target_rel=0x38d3 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2eb2 new_target_pc=0x378e old_push_pc=0x2ff3 new_push_pc=0x38cf target_rel=0x378e +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2ec2 new_target_pc=0x379e old_push_pc=0x2ff8 new_push_pc=0x38d4 target_rel=0x379e +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f2a new_target_pc=0x3806 old_push_pc=0x3002 new_push_pc=0x38de target_rel=0x3806 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f1a new_target_pc=0x37f6 old_push_pc=0x3006 new_push_pc=0x38e2 target_rel=0x37f6 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f2a new_target_pc=0x3806 old_push_pc=0x300a new_push_pc=0x38e6 target_rel=0x3806 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x3020 new_target_pc=0x38fc old_push_pc=0x3018 new_push_pc=0x38f4 target_rel=0x38fc +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2ef0 new_target_pc=0x37cc old_push_pc=0x301c new_push_pc=0x38f8 target_rel=0x37cc +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f00 new_target_pc=0x37dc old_push_pc=0x3021 new_push_pc=0x38fd target_rel=0x37dc +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f3f new_target_pc=0x381b old_push_pc=0x302b new_push_pc=0x3907 target_rel=0x381b +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f2f new_target_pc=0x380b old_push_pc=0x302f new_push_pc=0x390b target_rel=0x380b +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f3f new_target_pc=0x381b old_push_pc=0x3033 new_push_pc=0x390f target_rel=0x381b +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x3049 new_target_pc=0x3925 old_push_pc=0x3041 new_push_pc=0x391d target_rel=0x3925 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2df7 new_target_pc=0x36d3 old_push_pc=0x3045 new_push_pc=0x3921 target_rel=0x36d3 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e07 new_target_pc=0x36e3 old_push_pc=0x304a new_push_pc=0x3926 target_rel=0x36e3 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e59 new_target_pc=0x3735 old_push_pc=0x3054 new_push_pc=0x3930 target_rel=0x3735 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e49 new_target_pc=0x3725 old_push_pc=0x3058 new_push_pc=0x3934 target_rel=0x3725 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e59 new_target_pc=0x3735 old_push_pc=0x305c new_push_pc=0x3938 target_rel=0x3735 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x3072 new_target_pc=0x394e old_push_pc=0x306a new_push_pc=0x3946 target_rel=0x394e +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2ec7 new_target_pc=0x37a3 old_push_pc=0x306e new_push_pc=0x394a target_rel=0x37a3 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2ed7 new_target_pc=0x37b3 old_push_pc=0x3073 new_push_pc=0x394f target_rel=0x37b3 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2eeb new_target_pc=0x37c7 old_push_pc=0x307d new_push_pc=0x3959 target_rel=0x37c7 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2edc new_target_pc=0x37b8 old_push_pc=0x3081 new_push_pc=0x395d target_rel=0x37b8 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2eeb new_target_pc=0x37c7 old_push_pc=0x3085 new_push_pc=0x3961 target_rel=0x37c7 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x309b new_target_pc=0x3977 old_push_pc=0x3093 new_push_pc=0x396f target_rel=0x3977 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e20 new_target_pc=0x36fc old_push_pc=0x3097 new_push_pc=0x3973 target_rel=0x36fc +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e2f new_target_pc=0x370b old_push_pc=0x309c new_push_pc=0x3978 target_rel=0x370b +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e1b new_target_pc=0x36f7 old_push_pc=0x30a6 new_push_pc=0x3982 target_rel=0x36f7 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e0c new_target_pc=0x36e8 old_push_pc=0x30aa new_push_pc=0x3986 target_rel=0x36e8 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e1b new_target_pc=0x36f7 old_push_pc=0x30ae new_push_pc=0x398a target_rel=0x36f7 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x30c4 new_target_pc=0x39a0 old_push_pc=0x30bc new_push_pc=0x3998 target_rel=0x39a0 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2de3 new_target_pc=0x36bf old_push_pc=0x30c0 new_push_pc=0x399c target_rel=0x36bf +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2df2 new_target_pc=0x36ce old_push_pc=0x30c5 new_push_pc=0x39a1 target_rel=0x36ce +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f53 new_target_pc=0x382f old_push_pc=0x30cf new_push_pc=0x39ab target_rel=0x382f +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f44 new_target_pc=0x3820 old_push_pc=0x30d3 new_push_pc=0x39af target_rel=0x3820 +DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f53 new_target_pc=0x382f old_push_pc=0x30d7 new_push_pc=0x39b3 target_rel=0x382f +DEBUG azoth_transform::obfuscator: Controller patches re-applied successfully +DEBUG azoth_transform::obfuscator: Extract: Controller 0x5a4fd645 at PC 0x38af: ["0x38af:JUMPDEST", "0x38b0:PUSH(2)", "0x38b3:SLOAD", "0x38b4:ISZERO", "0x38b5:PUSH(2)"] +DEBUG azoth_transform::obfuscator: Extract: Controller 0xf3a504f2 at PC 0x398e: ["0x398e:JUMPDEST", "0x398f:PUSH(1)", "0x3991:CALLDATALOAD", "0x3992:PUSH(1)", "0x3994:BYTE"] +DEBUG azoth_transform::obfuscator: Extract: Controller 0x2feef2ec at PC 0x385d: ["0x385d:JUMPDEST", "0x385e:PUSH(2)", "0x3861:SLOAD", "0x3862:ISZERO", "0x3863:PUSH(2)"] +DEBUG azoth_transform::obfuscator: Extract: Controller 0xfe03a460 at PC 0x39a5: ["0x39a5:JUMPDEST", "0x39a6:PUSH(2)", "0x39a9:SLOAD", "0x39aa:ISZERO", "0x39ab:PUSH(2)"] +DEBUG azoth_transform::obfuscator: Extract: Controller 0x9940686e at PC 0x3913: ["0x3913:JUMPDEST", "0x3914:PUSH(1)", "0x3916:CALLDATALOAD", "0x3917:PUSH(1)", "0x3919:BYTE"] +DEBUG azoth_transform::obfuscator: Extract: Controller 0x1aa7c0ec at PC 0x3846: ["0x3846:JUMPDEST", "0x3847:PUSH(1)", "0x3849:CALLDATALOAD", "0x384a:PUSH(1)", "0x384c:BYTE"] +DEBUG azoth_transform::obfuscator: Extract: Controller 0x80f323a7 at PC 0x38c1: ["0x38c1:JUMPDEST", "0x38c2:PUSH(1)", "0x38c4:CALLDATALOAD", "0x38c5:PUSH(1)", "0x38c7:BYTE"] +DEBUG azoth_transform::obfuscator: Extract: Controller 0x33ee5f35 at PC 0x3886: ["0x3886:JUMPDEST", "0x3887:PUSH(2)", "0x388a:SLOAD", "0x388b:ISZERO", "0x388c:PUSH(2)"] +DEBUG azoth_transform::obfuscator: Extract: Controller 0xd415b3f9 at PC 0x3953: ["0x3953:JUMPDEST", "0x3954:PUSH(2)", "0x3957:SLOAD", "0x3958:ISZERO", "0x3959:PUSH(2)"] +DEBUG azoth_transform::obfuscator: Extract: Controller 0xd4899a62 at PC 0x3965: ["0x3965:JUMPDEST", "0x3966:PUSH(1)", "0x3968:CALLDATALOAD", "0x3969:PUSH(1)", "0x396b:BYTE"] +DEBUG azoth_transform::obfuscator: Extract: Controller 0xcb766a56 at PC 0x393c: ["0x393c:JUMPDEST", "0x393d:PUSH(1)", "0x393f:CALLDATALOAD", "0x3940:PUSH(1)", "0x3942:BYTE"] +DEBUG azoth_transform::obfuscator: Extract: Controller 0x81972d00 at PC 0x38d8: ["0x38d8:JUMPDEST", "0x38d9:PUSH(2)", "0x38dc:SLOAD", "0x38dd:ISZERO", "0x38de:PUSH(2)"] +DEBUG azoth_transform::obfuscator: Extract: Controller 0x8677ab23 at PC 0x38ea: ["0x38ea:JUMPDEST", "0x38eb:PUSH(1)", "0x38ed:CALLDATALOAD", "0x38ee:PUSH(1)", "0x38f0:BYTE"] +DEBUG azoth_transform::obfuscator: Extract: Controller 0x8bd03d0a at PC 0x3901: ["0x3901:JUMPDEST", "0x3902:PUSH(2)", "0x3905:SLOAD", "0x3906:ISZERO", "0x3907:PUSH(2)"] +DEBUG azoth_transform::obfuscator: Extract: Controller 0xa65e2cfd at PC 0x392a: ["0x392a:JUMPDEST", "0x392b:PUSH(2)", "0x392e:SLOAD", "0x392f:ISZERO", "0x3930:PUSH(2)"] +DEBUG azoth_transform::obfuscator: Extract: Controller 0x308657d7 at PC 0x386f: ["0x386f:JUMPDEST", "0x3870:PUSH(1)", "0x3872:CALLDATALOAD", "0x3873:PUSH(1)", "0x3875:BYTE"] +DEBUG azoth_transform::obfuscator: Extract: Controller 0x046f7da2 at PC 0x3834: ["0x3834:JUMPDEST", "0x3835:PUSH(2)", "0x3838:SLOAD", "0x3839:ISZERO", "0x383a:PUSH(2)"] +DEBUG azoth_transform::obfuscator: Extract: Controller 0xede7f6a3 at PC 0x397c: ["0x397c:JUMPDEST", "0x397d:PUSH(2)", "0x3980:SLOAD", "0x3981:ISZERO", "0x3982:PUSH(2)"] +DEBUG azoth_transform::obfuscator: Extract: Controller 0x3ccfd60b at PC 0x3898: ["0x3898:JUMPDEST", "0x3899:PUSH(1)", "0x389b:CALLDATALOAD", "0x389c:PUSH(1)", "0x389e:BYTE"] +DEBUG azoth_transform::obfuscator: Extracted 7358 instructions from CFG +DEBUG azoth_core::encoder: Encoding instruction: pc=0, opcode='PUSH1', imm=Some("80") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=5, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=8, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=9, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=10, opcode='PUSH2', imm=Some("0011") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=15, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=16, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=17, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=18, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=19, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=20, opcode='PUSH1', imm=Some("e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=22, opcode='SHR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c +DEBUG azoth_core::encoder: Encoding instruction: pc=23, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=24, opcode='PUSH4', imm=Some("ae6e97f9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=29, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=30, opcode='PUSH2', imm=Some("3834") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=33, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=34, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=35, opcode='PUSH4', imm=Some("a8abc0a3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=40, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=41, opcode='PUSH2', imm=Some("3846") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=44, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=45, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=46, opcode='PUSH4', imm=Some("ac5a2ffa") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=51, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=52, opcode='PUSH2', imm=Some("385d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=55, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=56, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=57, opcode='PUSH4', imm=Some("306ed7ee") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=62, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=63, opcode='PUSH2', imm=Some("386f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=66, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=67, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=68, opcode='PUSH4', imm=Some("4020961c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=73, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=74, opcode='PUSH2', imm=Some("3886") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=77, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=78, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=79, opcode='PUSH4', imm=Some("0ca2d6c9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=84, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=85, opcode='PUSH2', imm=Some("3898") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=88, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=89, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=90, opcode='PUSH4', imm=Some("753a624f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=95, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=96, opcode='PUSH2', imm=Some("38af") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=99, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=100, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=101, opcode='PUSH4', imm=Some("80f130e7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=106, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=107, opcode='PUSH2', imm=Some("38c1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=110, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=111, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=112, opcode='PUSH4', imm=Some("9bbfb1f4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=117, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=118, opcode='PUSH2', imm=Some("38d8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=121, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=122, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=123, opcode='PUSH4', imm=Some("2dd1abc1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=128, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=129, opcode='PUSH2', imm=Some("38ea") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=132, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=133, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=134, opcode='PUSH4', imm=Some("1a6ea280") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=139, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=140, opcode='PUSH2', imm=Some("3901") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=143, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=144, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=145, opcode='PUSH4', imm=Some("994049e6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=150, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=151, opcode='PUSH2', imm=Some("3913") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=154, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=155, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=156, opcode='PUSH4', imm=Some("e224c59d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=161, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=162, opcode='PUSH2', imm=Some("392a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=165, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=166, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=167, opcode='PUSH4', imm=Some("1ce46a9e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=172, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=173, opcode='PUSH2', imm=Some("393c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=176, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=177, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=178, opcode='PUSH4', imm=Some("569bee5a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=183, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=184, opcode='PUSH2', imm=Some("3953") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=187, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=188, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=189, opcode='PUSH4', imm=Some("d4162d29") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=194, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=195, opcode='PUSH2', imm=Some("3965") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=198, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=199, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=200, opcode='PUSH4', imm=Some("e1be5dbb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=205, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=206, opcode='PUSH2', imm=Some("397c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=209, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=210, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=211, opcode='PUSH4', imm=Some("0f9c0474") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=216, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=217, opcode='PUSH2', imm=Some("398e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=220, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=221, opcode='PUSH4', imm=Some("395ec66a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=226, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=227, opcode='PUSH2', imm=Some("39a5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=230, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=231, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=232, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=233, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=234, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=235, opcode='PUSH2', imm=Some("0a3b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=238, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=239, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=240, opcode='PUSH2', imm=Some("0a16") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=243, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=244, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=245, opcode='PUSH2', imm=Some("0781") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=248, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=249, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=250, opcode='PUSH2', imm=Some("0747") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=253, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=254, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=255, opcode='PUSH2', imm=Some("072a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=258, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=259, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=260, opcode='PUSH2', imm=Some("0706") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=263, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=264, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=265, opcode='PUSH2', imm=Some("05cb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=268, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=269, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=270, opcode='PUSH2', imm=Some("0462") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=273, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=274, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=275, opcode='PUSH2', imm=Some("0445") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=278, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=279, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=280, opcode='PUSH2', imm=Some("0401") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=283, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=284, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=285, opcode='PUSH2', imm=Some("03ae") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=288, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=289, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=290, opcode='PUSH2', imm=Some("0391") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=293, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=294, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=295, opcode='PUSH2', imm=Some("0375") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=298, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=299, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=300, opcode='PUSH2', imm=Some("0239") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=303, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=304, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=305, opcode='PUSH2', imm=Some("021c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=308, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=309, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=310, opcode='PUSH2', imm=Some("01fa") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=313, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=314, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=315, opcode='PUSH2', imm=Some("01c0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=318, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=319, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=320, opcode='PUSH2', imm=Some("0198") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=323, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=324, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=325, opcode='CALLVALUE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 +DEBUG azoth_core::encoder: Encoding instruction: pc=326, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=329, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=330, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=331, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=332, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=334, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=335, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=336, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=337, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=340, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=341, opcode='PUSH2', imm=Some("0188") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=344, opcode='CALLER', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLER' -> byte 0x33 +DEBUG azoth_core::encoder: Encoding instruction: pc=345, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=378, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=380, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=382, opcode='PUSH1', imm=Some("a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=384, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=385, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=386, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=387, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=388, opcode='PUSH2', imm=Some("0a58") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=391, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=392, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=393, opcode='PUSH1', imm=Some("07") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=395, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=396, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=397, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=399, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=400, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=401, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=402, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=403, opcode='STOP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'STOP' -> byte 0x00 +DEBUG azoth_core::encoder: Encoding instruction: pc=404, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=405, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=406, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=407, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=408, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=409, opcode='CALLVALUE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 +DEBUG azoth_core::encoder: Encoding instruction: pc=410, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=413, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=414, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=415, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=416, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=418, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=419, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=420, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=421, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=424, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=425, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=427, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=428, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=430, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=431, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=433, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=435, opcode='PUSH1', imm=Some("a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=437, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=438, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=439, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=440, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=441, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=442, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=443, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=444, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=446, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=447, opcode='RETURN', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 +DEBUG azoth_core::encoder: Encoding instruction: pc=448, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=449, opcode='CALLVALUE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 +DEBUG azoth_core::encoder: Encoding instruction: pc=450, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=453, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=454, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=455, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=456, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=458, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=459, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=460, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=461, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=464, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=465, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=467, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=469, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=470, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=503, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=504, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=505, opcode='RETURN', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 +DEBUG azoth_core::encoder: Encoding instruction: pc=506, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=507, opcode='CALLVALUE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 +DEBUG azoth_core::encoder: Encoding instruction: pc=508, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=511, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=512, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=513, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=514, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=516, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=517, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=518, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=519, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=522, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=523, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=525, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=527, opcode='PUSH1', imm=Some("07") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=529, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=530, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=531, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=533, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=534, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=535, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=536, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=537, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=538, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=539, opcode='RETURN', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 +DEBUG azoth_core::encoder: Encoding instruction: pc=540, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=541, opcode='CALLVALUE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 +DEBUG azoth_core::encoder: Encoding instruction: pc=542, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=545, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=546, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=547, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=548, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=550, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=551, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=552, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=553, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=556, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=557, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=559, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=561, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=562, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=564, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=565, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=566, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=567, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=568, opcode='RETURN', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 +DEBUG azoth_core::encoder: Encoding instruction: pc=569, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=570, opcode='CALLVALUE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 +DEBUG azoth_core::encoder: Encoding instruction: pc=571, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=574, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=575, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=576, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=577, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=579, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=580, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=581, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=582, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=585, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=586, opcode='PUSH2', imm=Some("02a1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=589, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=591, opcode='PUSH2', imm=Some("025e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=594, opcode='PUSH1', imm=Some("07") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=596, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=597, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=599, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=600, opcode='PUSH1', imm=Some("08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=602, opcode='SHR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c +DEBUG azoth_core::encoder: Encoding instruction: pc=603, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=604, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=605, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=606, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=607, opcode='PUSH2', imm=Some("0267") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=610, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=611, opcode='PUSH2', imm=Some("0aa4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=614, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=615, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=616, opcode='PUSH2', imm=Some("0299") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=619, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=620, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=621, opcode='PUSH1', imm=Some("a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=623, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=624, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=625, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=658, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=659, opcode='CALLER', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLER' -> byte 0x33 +DEBUG azoth_core::encoder: Encoding instruction: pc=660, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=661, opcode='PUSH2', imm=Some("0a58") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=664, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=665, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=666, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=667, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=668, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=669, opcode='PUSH2', imm=Some("0b1f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=672, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=673, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=674, opcode='PUSH2', imm=Some("02a9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=677, opcode='PUSH2', imm=Some("1739") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=680, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=681, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=682, opcode='PUSH2', imm=Some("030b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=685, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=687, opcode='PUSH2', imm=Some("02bd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=690, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=692, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=693, opcode='PUSH1', imm=Some("02") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=695, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=696, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=697, opcode='PUSH2', imm=Some("0cfb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=700, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=701, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=702, opcode='PUSH2', imm=Some("02cd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=705, opcode='PUSH2', imm=Some("ff00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=708, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=709, opcode='PUSH1', imm=Some("07") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=711, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=712, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=713, opcode='PUSH1', imm=Some("07") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=715, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=716, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=717, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=718, opcode='PUSH2', imm=Some("02d6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=721, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=722, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=724, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=725, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=726, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=727, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=728, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=729, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=730, opcode='PUSH2', imm=Some("02e4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=733, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=734, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=735, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=736, opcode='PUSH2', imm=Some("0d08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=739, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=740, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=741, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=743, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=744, opcode='PUSH4', imm=Some("a9059cbb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=749, opcode='PUSH1', imm=Some("e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=751, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=752, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=753, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=754, opcode='CALLER', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLER' -> byte 0x33 +DEBUG azoth_core::encoder: Encoding instruction: pc=755, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=757, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=758, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=759, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=760, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=762, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=763, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=764, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=765, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=766, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=767, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=768, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=769, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=770, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=771, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=772, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=773, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=775, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=776, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=777, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=778, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=779, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=780, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=781, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=782, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=783, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=816, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=818, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=820, opcode='PUSH1', imm=Some("a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=822, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=823, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=824, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=825, opcode='GAS', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GAS' -> byte 0x5a +DEBUG azoth_core::encoder: Encoding instruction: pc=826, opcode='CALL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALL' -> byte 0xf1 +DEBUG azoth_core::encoder: Encoding instruction: pc=827, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=828, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=829, opcode='PUSH2', imm=Some("0370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=832, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=833, opcode='PUSH2', imm=Some("0346") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=836, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=837, opcode='STOP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'STOP' -> byte 0x00 +DEBUG azoth_core::encoder: Encoding instruction: pc=838, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=839, opcode='PUSH2', imm=Some("0367") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=842, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=843, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=845, opcode='RETURNDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'RETURNDATASIZE' -> byte 0x3d +DEBUG azoth_core::encoder: Encoding instruction: pc=846, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=848, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=849, opcode='PUSH2', imm=Some("0369") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=852, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=853, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=854, opcode='PUSH2', imm=Some("035f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=857, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=858, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=859, opcode='PUSH2', imm=Some("0d67") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=862, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=863, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=864, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=865, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=866, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=867, opcode='PUSH2', imm=Some("0d8e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=870, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=871, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=872, opcode='STOP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'STOP' -> byte 0x00 +DEBUG azoth_core::encoder: Encoding instruction: pc=873, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=874, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=875, opcode='RETURNDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'RETURNDATASIZE' -> byte 0x3d +DEBUG azoth_core::encoder: Encoding instruction: pc=876, opcode='PUSH2', imm=Some("0355") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=879, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=880, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=881, opcode='PUSH2', imm=Some("0da6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=884, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=885, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=886, opcode='CALLVALUE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 +DEBUG azoth_core::encoder: Encoding instruction: pc=887, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=890, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=891, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=892, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=893, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=895, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=896, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=897, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=898, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=901, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=902, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=904, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=905, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=906, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=908, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=909, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=910, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=911, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=912, opcode='RETURN', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 +DEBUG azoth_core::encoder: Encoding instruction: pc=913, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=914, opcode='CALLVALUE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 +DEBUG azoth_core::encoder: Encoding instruction: pc=915, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=918, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=919, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=920, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=921, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=923, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=924, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=925, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=926, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=929, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=930, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=932, opcode='PUSH1', imm=Some("05") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=934, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=935, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=937, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=938, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=939, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=940, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=941, opcode='RETURN', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 +DEBUG azoth_core::encoder: Encoding instruction: pc=942, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=943, opcode='CALLVALUE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 +DEBUG azoth_core::encoder: Encoding instruction: pc=944, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=947, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=948, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=949, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=950, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=952, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=953, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=954, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=955, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=958, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=959, opcode='PUSH2', imm=Some("03f2") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=962, opcode='CALLER', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLER' -> byte 0x33 +DEBUG azoth_core::encoder: Encoding instruction: pc=963, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=996, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=998, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1000, opcode='PUSH1', imm=Some("a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1002, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=1003, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=1004, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=1005, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=1006, opcode='PUSH2', imm=Some("0a58") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1009, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1010, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1011, opcode='PUSH1', imm=Some("07") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1013, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=1014, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=1015, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1017, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=1018, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=1019, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1021, opcode='OR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 +DEBUG azoth_core::encoder: Encoding instruction: pc=1022, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1023, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=1024, opcode='STOP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'STOP' -> byte 0x00 +DEBUG azoth_core::encoder: Encoding instruction: pc=1025, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1026, opcode='CALLVALUE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 +DEBUG azoth_core::encoder: Encoding instruction: pc=1027, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1030, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1031, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=1032, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=1033, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1035, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=1036, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=1037, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=1038, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1041, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1042, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1044, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=1045, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=1078, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1080, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1082, opcode='PUSH1', imm=Some("a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1084, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=1085, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=1086, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=1087, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=1088, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=1089, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1091, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1092, opcode='RETURN', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 +DEBUG azoth_core::encoder: Encoding instruction: pc=1093, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1094, opcode='CALLVALUE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 +DEBUG azoth_core::encoder: Encoding instruction: pc=1095, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1098, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1099, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=1100, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=1101, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1103, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=1104, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=1105, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=1106, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1109, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1110, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1112, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1114, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=1115, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1117, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=1118, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1119, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=1120, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=1121, opcode='RETURN', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 +DEBUG azoth_core::encoder: Encoding instruction: pc=1122, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1123, opcode='CALLVALUE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 +DEBUG azoth_core::encoder: Encoding instruction: pc=1124, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1127, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1128, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1130, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=1131, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1133, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=1134, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=1135, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=1136, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1139, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1140, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1142, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=1143, opcode='PUSH2', imm=Some("04a7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1146, opcode='PUSH2', imm=Some("04a2") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1149, opcode='PUSH2', imm=Some("049e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1152, opcode='PUSH1', imm=Some("07") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1154, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=1155, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1158, opcode='PUSH2', imm=Some("0493") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1161, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=1162, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1164, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1165, opcode='PUSH1', imm=Some("08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1167, opcode='SHR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c +DEBUG azoth_core::encoder: Encoding instruction: pc=1168, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=1169, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1170, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1171, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1172, opcode='PUSH2', imm=Some("0aa4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1175, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1176, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1177, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1179, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=1180, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1181, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1182, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1183, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=1184, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1185, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1186, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1187, opcode='PUSH2', imm=Some("0db1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1190, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1191, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1192, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=1193, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=1194, opcode='PUSH2', imm=Some("04be") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1197, opcode='PUSH2', imm=Some("04b6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1200, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=1201, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1203, opcode='SHR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c +DEBUG azoth_core::encoder: Encoding instruction: pc=1204, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1205, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1206, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1207, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=1208, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=1209, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=1210, opcode='PUSH2', imm=Some("0df6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1213, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1214, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1215, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1217, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=1218, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=1219, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=1220, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=1221, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1222, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=1223, opcode='PUSH2', imm=Some("05c1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1226, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1227, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1228, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=1229, opcode='PUSH2', imm=Some("058f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1232, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1233, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1234, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=1235, opcode='PUSH2', imm=Some("04e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1238, opcode='PUSH2', imm=Some("04e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1241, opcode='PUSH2', imm=Some("049e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1244, opcode='PUSH2', imm=Some("1172") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1247, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1248, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1249, opcode='PUSH2', imm=Some("0e9f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1252, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1253, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1254, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1256, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=1257, opcode='PUSH4', imm=Some("23b872dd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=1262, opcode='PUSH1', imm=Some("e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1264, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=1265, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=1266, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=1267, opcode='CALLER', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLER' -> byte 0x33 +DEBUG azoth_core::encoder: Encoding instruction: pc=1268, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1270, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=1271, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=1272, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=1273, opcode='ADDRESS', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADDRESS' -> byte 0x30 +DEBUG azoth_core::encoder: Encoding instruction: pc=1274, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1276, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=1277, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=1278, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=1279, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1281, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=1282, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=1283, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=1284, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1285, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=1286, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1287, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1289, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=1290, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1292, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=1293, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=1294, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1296, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1298, opcode='PUSH1', imm=Some("a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1300, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=1301, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=1302, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=1335, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=1336, opcode='GAS', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GAS' -> byte 0x5a +DEBUG azoth_core::encoder: Encoding instruction: pc=1337, opcode='CALL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALL' -> byte 0xf1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1338, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=1339, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=1340, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=1341, opcode='PUSH2', imm=Some("0370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1344, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1345, opcode='PUSH2', imm=Some("0367") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1348, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=1349, opcode='PUSH2', imm=Some("0572") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1352, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1353, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1354, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=1355, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1357, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=1358, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=1359, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1361, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1363, opcode='PUSH1', imm=Some("a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1365, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=1366, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=1367, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=1368, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=1369, opcode='CALLER', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLER' -> byte 0x33 +DEBUG azoth_core::encoder: Encoding instruction: pc=1370, opcode='OR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 +DEBUG azoth_core::encoder: Encoding instruction: pc=1371, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1372, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=1373, opcode='PUSH2', imm=Some("056d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1376, opcode='PUSH2', imm=Some("0568") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1379, opcode='TIMESTAMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'TIMESTAMP' -> byte 0x42 +DEBUG azoth_core::encoder: Encoding instruction: pc=1380, opcode='PUSH2', imm=Some("0ccb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1383, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1384, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1385, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1387, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=1388, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1389, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1390, opcode='PUSH1', imm=Some("05") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1392, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=1393, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1394, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1395, opcode='PUSH2', imm=Some("058a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1398, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1399, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1401, opcode='RETURNDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'RETURNDATASIZE' -> byte 0x3d +DEBUG azoth_core::encoder: Encoding instruction: pc=1402, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1404, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=1405, opcode='PUSH2', imm=Some("0369") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1408, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1409, opcode='PUSH2', imm=Some("035f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1412, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=1413, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=1414, opcode='PUSH2', imm=Some("0d67") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1417, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1418, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1419, opcode='PUSH2', imm=Some("0549") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1422, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1423, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1424, opcode='PUSH1', imm=Some("05") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1426, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=1427, opcode='PUSH2', imm=Some("059b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1430, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=1431, opcode='PUSH2', imm=Some("0cfb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1434, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1435, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1436, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=1437, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=1438, opcode='PUSH2', imm=Some("05b3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1441, opcode='PUSH2', imm=Some("05ae") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1444, opcode='PUSH1', imm=Some("05") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1446, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=1447, opcode='PUSH1', imm=Some("06") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1449, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=1450, opcode='PUSH2', imm=Some("0cfb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1453, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1454, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1455, opcode='PUSH1', imm=Some("06") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1457, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=1458, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1459, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1460, opcode='PUSH2', imm=Some("05bb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1463, opcode='PUSH2', imm=Some("1739") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1466, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1467, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1468, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=1469, opcode='PUSH2', imm=Some("04d1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1472, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1473, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1474, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1475, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=1476, opcode='TIMESTAMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'TIMESTAMP' -> byte 0x42 +DEBUG azoth_core::encoder: Encoding instruction: pc=1477, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=1478, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=1479, opcode='PUSH2', imm=Some("04cb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1482, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1483, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1484, opcode='CALLVALUE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 +DEBUG azoth_core::encoder: Encoding instruction: pc=1485, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1488, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1489, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1491, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=1492, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1494, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=1495, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=1496, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=1497, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1500, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1501, opcode='PUSH2', imm=Some("065a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1504, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1506, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=1507, opcode='PUSH2', imm=Some("0655") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1510, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1512, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=1513, opcode='PUSH2', imm=Some("061c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1516, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1518, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1520, opcode='PUSH1', imm=Some("a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1522, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=1523, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=1524, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=1557, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=1558, opcode='CALLER', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLER' -> byte 0x33 +DEBUG azoth_core::encoder: Encoding instruction: pc=1559, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=1560, opcode='PUSH2', imm=Some("0a58") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1563, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1564, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1565, opcode='PUSH2', imm=Some("0637") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1568, opcode='PUSH2', imm=Some("0632") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1571, opcode='PUSH2', imm=Some("049e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1574, opcode='PUSH1', imm=Some("07") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1576, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=1577, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1579, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1580, opcode='PUSH1', imm=Some("08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1582, opcode='SHR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c +DEBUG azoth_core::encoder: Encoding instruction: pc=1583, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=1584, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1585, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1586, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1587, opcode='PUSH2', imm=Some("0fe7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1590, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1591, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1592, opcode='PUSH2', imm=Some("0642") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1595, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=1596, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=1597, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=1598, opcode='PUSH2', imm=Some("1077") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1601, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1602, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1603, opcode='PUSH2', imm=Some("064d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1606, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=1607, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=1608, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=1609, opcode='PUSH2', imm=Some("10c3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1612, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1613, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1614, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=1615, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=1616, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=1617, opcode='PUSH1', imm=Some("02") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1619, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=1620, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1621, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1622, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1624, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=1625, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1626, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1627, opcode='PUSH2', imm=Some("069b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1630, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1632, opcode='PUSH2', imm=Some("066e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1635, opcode='PUSH1', imm=Some("02") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1637, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=1638, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1640, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=1641, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1642, opcode='PUSH2', imm=Some("0cfb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1645, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1646, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1647, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1649, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=1650, opcode='PUSH4', imm=Some("23b872dd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=1655, opcode='PUSH1', imm=Some("e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1657, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=1658, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=1659, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=1660, opcode='CALLER', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLER' -> byte 0x33 +DEBUG azoth_core::encoder: Encoding instruction: pc=1661, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1663, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=1664, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=1665, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=1666, opcode='ADDRESS', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADDRESS' -> byte 0x30 +DEBUG azoth_core::encoder: Encoding instruction: pc=1667, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1669, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=1670, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=1671, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=1672, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1674, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=1675, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=1676, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=1677, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1678, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=1679, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=1680, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=1681, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=1682, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1683, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=1684, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1685, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1687, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=1688, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=1689, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1690, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1691, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1692, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=1693, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=1694, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=1695, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=1728, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1730, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1732, opcode='PUSH1', imm=Some("a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1734, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=1735, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=1736, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=1737, opcode='GAS', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GAS' -> byte 0x5a +DEBUG azoth_core::encoder: Encoding instruction: pc=1738, opcode='CALL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALL' -> byte 0xf1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1739, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=1740, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=1741, opcode='PUSH2', imm=Some("0370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1744, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1745, opcode='PUSH2', imm=Some("06e9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1748, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1749, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1750, opcode='PUSH2', imm=Some("0367") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1753, opcode='PUSH2', imm=Some("0100") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1756, opcode='PUSH2', imm=Some("ff00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1759, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=1760, opcode='PUSH1', imm=Some("07") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1762, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=1763, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=1764, opcode='OR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 +DEBUG azoth_core::encoder: Encoding instruction: pc=1765, opcode='PUSH1', imm=Some("07") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1767, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=1768, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1769, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1770, opcode='PUSH2', imm=Some("0701") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1773, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1774, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1776, opcode='RETURNDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'RETURNDATASIZE' -> byte 0x3d +DEBUG azoth_core::encoder: Encoding instruction: pc=1777, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1779, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=1780, opcode='PUSH2', imm=Some("0369") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1783, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1784, opcode='PUSH2', imm=Some("035f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1787, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=1788, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=1789, opcode='PUSH2', imm=Some("0d67") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1792, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1793, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1794, opcode='PUSH2', imm=Some("06d5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1797, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1798, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1799, opcode='CALLVALUE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 +DEBUG azoth_core::encoder: Encoding instruction: pc=1800, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1803, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1804, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=1805, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=1806, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1808, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=1809, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=1810, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=1811, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1814, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1815, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1817, opcode='PUSH2', imm=Some("0720") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1820, opcode='PUSH2', imm=Some("1172") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1823, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=1824, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1825, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1827, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=1828, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1829, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=1830, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=1831, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=1832, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=1833, opcode='RETURN', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 +DEBUG azoth_core::encoder: Encoding instruction: pc=1834, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1835, opcode='CALLVALUE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 +DEBUG azoth_core::encoder: Encoding instruction: pc=1836, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1839, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1840, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=1841, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=1842, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1844, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=1845, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=1846, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=1847, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1850, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1851, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1853, opcode='PUSH1', imm=Some("02") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1855, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=1856, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1858, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=1859, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1860, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=1861, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=1862, opcode='RETURN', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 +DEBUG azoth_core::encoder: Encoding instruction: pc=1863, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1864, opcode='CALLVALUE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 +DEBUG azoth_core::encoder: Encoding instruction: pc=1865, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1868, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1869, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=1870, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=1871, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1873, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=1874, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=1875, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=1876, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1879, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1880, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1882, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1884, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=1885, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=1918, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=1919, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=1920, opcode='RETURN', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 +DEBUG azoth_core::encoder: Encoding instruction: pc=1921, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=1922, opcode='CALLVALUE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 +DEBUG azoth_core::encoder: Encoding instruction: pc=1923, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1926, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1927, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1929, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=1930, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1932, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=1933, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=1934, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=1935, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1938, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1939, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1941, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=1942, opcode='PUSH8', imm=Some("ffffffffffffffff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=1951, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=1952, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=1953, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1956, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1957, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=1958, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1960, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=1961, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=1962, opcode='PUSH1', imm=Some("a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1964, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1966, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=1967, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=1968, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=1969, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=1970, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=1971, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=1972, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1975, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=1976, opcode='PUSH2', imm=Some("09ea") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1979, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=1980, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1982, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=1983, opcode='PUSH2', imm=Some("095d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1986, opcode='PUSH2', imm=Some("0958") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1989, opcode='PUSH1', imm=Some("84") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1991, opcode='PUSH2', imm=Some("08e6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=1994, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=1996, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=1997, opcode='SWAP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 +DEBUG azoth_core::encoder: Encoding instruction: pc=1998, opcode='PUSH2', imm=Some("07e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2001, opcode='PUSH2', imm=Some("0493") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2004, opcode='PUSH1', imm=Some("07") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2006, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=2007, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2009, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2010, opcode='PUSH1', imm=Some("08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2012, opcode='SHR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c +DEBUG azoth_core::encoder: Encoding instruction: pc=2013, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=2014, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2015, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2016, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2017, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2019, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=2020, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2022, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2024, opcode='PUSH1', imm=Some("a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2026, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=2027, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=2028, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=2029, opcode='SWAP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 +DEBUG azoth_core::encoder: Encoding instruction: pc=2030, opcode='PUSH2', imm=Some("088d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2033, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2034, opcode='CALLER', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLER' -> byte 0x33 +DEBUG azoth_core::encoder: Encoding instruction: pc=2035, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=2036, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=2037, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=2038, opcode='PUSH2', imm=Some("0a03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2041, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=2042, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2043, opcode='PUSH2', imm=Some("0803") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2046, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2047, opcode='PUSH2', imm=Some("118a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2050, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2051, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2052, opcode='PUSH2', imm=Some("080f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2055, opcode='NUMBER', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NUMBER' -> byte 0x43 +DEBUG azoth_core::encoder: Encoding instruction: pc=2056, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=2057, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=2058, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=2059, opcode='PUSH2', imm=Some("11d5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2062, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2063, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2064, opcode='PUSH2', imm=Some("0844") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2067, opcode='PUSH2', imm=Some("081c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2070, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=2071, opcode='NUMBER', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NUMBER' -> byte 0x43 +DEBUG azoth_core::encoder: Encoding instruction: pc=2072, opcode='PUSH2', imm=Some("123e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2075, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2076, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2077, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=2110, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=2111, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=2112, opcode='PUSH2', imm=Some("124b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2115, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2116, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2117, opcode='PUSH2', imm=Some("0874") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2120, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=2121, opcode='BLOCKHASH', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'BLOCKHASH' -> byte 0x40 +DEBUG azoth_core::encoder: Encoding instruction: pc=2122, opcode='PUSH2', imm=Some("0854") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2125, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=2126, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=2127, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=2128, opcode='PUSH2', imm=Some("1310") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2131, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2132, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2133, opcode='PUSH2', imm=Some("0868") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2136, opcode='PUSH2', imm=Some("0861") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2139, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=2140, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=2141, opcode='PUSH2', imm=Some("135c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2144, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2145, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2146, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=2147, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=2148, opcode='PUSH2', imm=Some("13ab") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2151, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2152, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2153, opcode='DUP13', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP13' -> byte 0x8c +DEBUG azoth_core::encoder: Encoding instruction: pc=2154, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=2155, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=2156, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=2157, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=2158, opcode='KECCAK256', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'KECCAK256' -> byte 0x20 +DEBUG azoth_core::encoder: Encoding instruction: pc=2159, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=2160, opcode='PUSH2', imm=Some("13e1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2163, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2164, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2165, opcode='PUSH2', imm=Some("0887") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2168, opcode='PUSH2', imm=Some("0881") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2171, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=2172, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=2173, opcode='PUSH2', imm=Some("135c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2176, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2177, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2178, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2179, opcode='PUSH2', imm=Some("1a19") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2182, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2183, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2184, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=2185, opcode='PUSH2', imm=Some("142d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2188, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2189, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2190, opcode='PUSH2', imm=Some("08a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2193, opcode='PUSH2', imm=Some("089a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2196, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=2197, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=2198, opcode='PUSH2', imm=Some("135c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2201, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2202, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2203, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2204, opcode='PUSH2', imm=Some("1c2d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2207, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2208, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2209, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2210, opcode='PUSH2', imm=Some("08e1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2213, opcode='PUSH2', imm=Some("08dc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2216, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2218, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=2219, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=2220, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=2221, opcode='PUSH2', imm=Some("08b6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2224, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=2225, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=2226, opcode='PUSH2', imm=Some("135c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2229, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2230, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2231, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2232, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2234, opcode='DUP13', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP13' -> byte 0x8c +DEBUG azoth_core::encoder: Encoding instruction: pc=2235, opcode='PUSH2', imm=Some("08d4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2238, opcode='PUSH2', imm=Some("08ca") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2241, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2243, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=2244, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=2245, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=2246, opcode='PUSH2', imm=Some("135c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2249, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2250, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2251, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=2252, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2253, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=2254, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=2255, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=2256, opcode='PUSH2', imm=Some("135c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2259, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2260, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2261, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=2262, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2263, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=2264, opcode='PUSH2', imm=Some("1ce9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2267, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2268, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2269, opcode='PUSH2', imm=Some("1513") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2272, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2273, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2274, opcode='PUSH2', imm=Some("135c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2277, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2278, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2279, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=2280, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2281, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=2282, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=2283, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=2284, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=2285, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=2318, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=2319, opcode='SWAP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 +DEBUG azoth_core::encoder: Encoding instruction: pc=2320, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=2353, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=2354, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=2387, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=2388, opcode='PUSH2', imm=Some("1e91") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2391, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2392, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2393, opcode='PUSH2', imm=Some("1631") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2396, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2397, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2398, opcode='PUSH2', imm=Some("0977") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2401, opcode='PUSH2', imm=Some("096e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2404, opcode='PUSH1', imm=Some("05") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2406, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=2407, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=2408, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=2409, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2410, opcode='PUSH2', imm=Some("0cfb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2413, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2414, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2415, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2417, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=2418, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2419, opcode='PUSH2', imm=Some("0cfb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2422, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2423, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2424, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2426, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=2427, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=2428, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2430, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2432, opcode='PUSH1', imm=Some("a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2434, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=2435, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=2436, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=2437, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=2438, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2439, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=2440, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=2441, opcode='PUSH2', imm=Some("0991") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2444, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=2445, opcode='PUSH1', imm=Some("05") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2447, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=2448, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2449, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2450, opcode='PUSH2', imm=Some("099a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2453, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=2454, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2456, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=2457, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2458, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2459, opcode='PUSH2', imm=Some("09aa") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2462, opcode='PUSH2', imm=Some("ff00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2465, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=2466, opcode='PUSH1', imm=Some("07") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2468, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=2469, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=2470, opcode='PUSH1', imm=Some("07") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2472, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=2473, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2474, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2475, opcode='PUSH2', imm=Some("09b3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2478, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=2479, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2481, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=2482, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2483, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2484, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=2485, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=2486, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=2487, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=2488, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2490, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=2491, opcode='PUSH4', imm=Some("a9059cbb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=2496, opcode='PUSH1', imm=Some("e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2498, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=2499, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=2500, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=2501, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2503, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2505, opcode='PUSH1', imm=Some("a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2507, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=2508, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=2509, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2510, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=2511, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=2512, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2514, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=2515, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=2516, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=2517, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2519, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=2520, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=2521, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=2522, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2523, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=2524, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=2525, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=2526, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=2527, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=2528, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=2529, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=2530, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=2531, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2532, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2534, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=2535, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=2536, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2537, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2538, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2539, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=2540, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=2541, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2543, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2545, opcode='PUSH1', imm=Some("a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2547, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=2548, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=2549, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=2550, opcode='GAS', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GAS' -> byte 0x5a +DEBUG azoth_core::encoder: Encoding instruction: pc=2551, opcode='CALL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALL' -> byte 0xf1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2552, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=2553, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=2554, opcode='PUSH2', imm=Some("0370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2557, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=2558, opcode='PUSH2', imm=Some("0346") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2561, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=2562, opcode='STOP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'STOP' -> byte 0x00 +DEBUG azoth_core::encoder: Encoding instruction: pc=2563, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2564, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=2565, opcode='PUSH2', imm=Some("0803") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2568, opcode='PUSH2', imm=Some("0a0f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2571, opcode='PUSH2', imm=Some("1172") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2574, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2575, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2576, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2577, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=2578, opcode='PUSH2', imm=Some("07fa") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2581, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2582, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2583, opcode='CALLVALUE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 +DEBUG azoth_core::encoder: Encoding instruction: pc=2584, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2587, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=2588, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=2589, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=2590, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2592, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=2593, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=2594, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=2595, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2598, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=2599, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2601, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2603, opcode='PUSH1', imm=Some("07") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2605, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=2606, opcode='PUSH1', imm=Some("08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2608, opcode='SHR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c +DEBUG azoth_core::encoder: Encoding instruction: pc=2609, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=2610, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2612, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=2613, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2614, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=2615, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=2616, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=2617, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=2618, opcode='RETURN', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 +DEBUG azoth_core::encoder: Encoding instruction: pc=2619, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2620, opcode='CALLVALUE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 +DEBUG azoth_core::encoder: Encoding instruction: pc=2621, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2624, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=2625, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=2626, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=2627, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2629, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=2630, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=2631, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=2632, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2635, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=2636, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2638, opcode='PUSH1', imm=Some("06") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2640, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=2641, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2643, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=2644, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2645, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=2646, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=2647, opcode='RETURN', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 +DEBUG azoth_core::encoder: Encoding instruction: pc=2648, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2649, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=2650, opcode='PUSH2', imm=Some("0a5f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2653, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=2654, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2655, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2656, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2658, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=2659, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=2663, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2665, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=2666, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=2667, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=2668, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2670, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2672, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=2673, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=2674, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=2675, opcode='PUSH1', imm=Some("1d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2677, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2679, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=2680, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=2681, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=2682, opcode='PUSH32', imm=Some("adb2e11b90c5bd4f35c7886e31b623316dbb327698940ddf17856be4f2aa9a03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=2715, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2717, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=2718, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=2719, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=2720, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2722, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2723, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=2724, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2725, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=2726, opcode='PUSH2', imm=Some("0aab") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2729, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=2730, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2731, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2732, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2734, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=2735, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=2739, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2741, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=2742, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=2743, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=2744, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2746, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2748, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=2749, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=2750, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=2751, opcode='PUSH1', imm=Some("13") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2753, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2755, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=2756, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=2757, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=2758, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2760, opcode='PUSH2', imm=Some("3216") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2763, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2765, opcode='CODECOPY', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 +DEBUG azoth_core::encoder: Encoding instruction: pc=2766, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2768, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=2769, opcode='PUSH8', imm=Some("ed8ed47a17f90607") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=2778, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=2779, opcode='PUSH8', imm=Some("3cecbd313687c975") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=2788, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=2789, opcode='PUSH8', imm=Some("4a98a79091b2abac") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=2798, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=2799, opcode='PUSH8', imm=Some("17753d24d50737d5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=2808, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=2809, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=2810, opcode='PUSH4', imm=Some("f726c5b5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=2815, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=2816, opcode='PUSH4', imm=Some("30bb295a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=2821, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=2822, opcode='PUSH4', imm=Some("61f7fd7a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=2827, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=2828, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2829, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=2830, opcode='PUSH2', imm=Some("4d55") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2833, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2834, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=2835, opcode='PUSH1', imm=Some("6a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2837, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=2838, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2840, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=2841, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=2842, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=2843, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2845, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=2846, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=2847, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2848, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=2849, opcode='PUSH2', imm=Some("0b26") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2852, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=2853, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=2854, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=2855, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2857, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=2858, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=2862, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2864, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=2865, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=2866, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=2867, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2869, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2871, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=2872, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=2873, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=2874, opcode='PUSH1', imm=Some("37") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2876, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2878, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=2879, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=2880, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=2881, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2883, opcode='PUSH2', imm=Some("3236") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2886, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2888, opcode='CODECOPY', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 +DEBUG azoth_core::encoder: Encoding instruction: pc=2889, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2891, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=2892, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2894, opcode='PUSH2', imm=Some("3256") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2897, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2899, opcode='CODECOPY', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 +DEBUG azoth_core::encoder: Encoding instruction: pc=2900, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2902, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=2903, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=2904, opcode='PUSH32', imm=Some("08228020212024103a24c0d04002832030081a805100019100c0e89542000044") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=2937, opcode='OR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 +DEBUG azoth_core::encoder: Encoding instruction: pc=2938, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=2940, opcode='MUL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MUL' -> byte 0x02 +DEBUG azoth_core::encoder: Encoding instruction: pc=2941, opcode='PUSH2', imm=Some("6a8d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=2944, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=2945, opcode='PUSH16', imm=Some("1f10a20087de46a79e5aead386db0ebf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=2962, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=2963, opcode='PUSH16', imm=Some("62ac9df78db7876ec19fc4cf321b3430") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=2980, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=2981, opcode='PUSH16', imm=Some("fe0c7379090734ecb8b5a798f446c96a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=2998, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=2999, opcode='PUSH16', imm=Some("4fc230ee4f775a6a450a07d29a0da89c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=3016, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=3017, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3018, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3020, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=3021, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3022, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3023, opcode='PUSH32', imm=Some("10e5a42ca5d4250ac9312dcbc65ee6ff7882a5add19612eadb13e57f3c0fb850") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=3056, opcode='PUSH8', imm=Some("8e7f20391b10fd51") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=3065, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3066, opcode='PUSH8', imm=Some("25ef6125332872a9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=3075, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3076, opcode='PUSH8', imm=Some("59da2a79555f57c9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=3085, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3086, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3087, opcode='PUSH4', imm=Some("70d06fb7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=3092, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=3093, opcode='PUSH4', imm=Some("33208199") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=3098, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=3099, opcode='PUSH4', imm=Some("b21d1ffd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=3104, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3105, opcode='PUSH4', imm=Some("14535784") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=3110, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3111, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=3112, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=3113, opcode='PUSH1', imm=Some("0b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3115, opcode='MUL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MUL' -> byte 0x02 +DEBUG azoth_core::encoder: Encoding instruction: pc=3116, opcode='PUSH8', imm=Some("7bca71fa3c14b204") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=3125, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=3126, opcode='PUSH8', imm=Some("65d4766e9fe41601") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=3135, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=3136, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3137, opcode='PUSH2', imm=Some("ec52") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=3140, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=3141, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=3142, opcode='PUSH8', imm=Some("24e922842da5f11c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=3151, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3152, opcode='PUSH8', imm=Some("a5e4d6e6399e26a4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=3161, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3162, opcode='PUSH8', imm=Some("a47c6b3d9dce12a6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=3171, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3172, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=3173, opcode='PUSH32', imm=Some("d8ad2d894578f956c16e96a8e87688da4cf16c1d6016a9184a5222e63ab20833") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=3206, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=3207, opcode='PUSH4', imm=Some("7cfde2d2") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=3212, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3213, opcode='PUSH4', imm=Some("4e545952") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=3218, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3219, opcode='PUSH4', imm=Some("378023a1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=3224, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3225, opcode='PUSH4', imm=Some("f83ff677") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=3230, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3231, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=3232, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=3233, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3235, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=3236, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3237, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3238, opcode='PUSH1', imm=Some("84") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3240, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=3241, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=3242, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=3243, opcode='PUSH4', imm=Some("1e31fd4a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=3248, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=3249, opcode='PUSH4', imm=Some("fabd695a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=3254, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=3255, opcode='PUSH4', imm=Some("aac4ef61") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=3260, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=3261, opcode='PUSH1', imm=Some("e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3263, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=3264, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=3265, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3266, opcode='PUSH1', imm=Some("11") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3268, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3270, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3271, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3273, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=3274, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=3275, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=3276, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=3277, opcode='PUSH2', imm=Some("012c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=3280, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=3281, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3282, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=3283, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=3284, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=3285, opcode='PUSH2', imm=Some("0cda") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=3288, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=3289, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=3290, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=3291, opcode='PUSH2', imm=Some("0caa") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=3294, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=3295, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=3296, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=3297, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3299, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=3300, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3301, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=3302, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=3303, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=3304, opcode='PUSH2', imm=Some("0cda") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=3307, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=3308, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=3309, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=3310, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3312, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3313, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=3314, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=3315, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3317, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=3318, opcode='PUSH2', imm=Some("0cda") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=3321, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=3322, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=3323, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=3324, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=3325, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=3326, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=3327, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3328, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=3329, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=3330, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=3331, opcode='PUSH2', imm=Some("0cda") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=3334, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=3335, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=3336, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=3337, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=3338, opcode='PUSH2', imm=Some("0d0f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=3341, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=3342, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=3343, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=3344, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3346, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=3347, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=3351, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3353, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=3354, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=3355, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3356, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3358, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3360, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=3361, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3362, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3363, opcode='PUSH1', imm=Some("15") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3365, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3367, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=3368, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3369, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3370, opcode='PUSH21', imm=Some("bff7f9f7c59907f97268de3b41dc8e19ffd7105125") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH21' -> byte 0x74 +DEBUG azoth_core::encoder: Added 21 immediate bytes for PUSH21 +DEBUG azoth_core::encoder: Encoding instruction: pc=3392, opcode='PUSH1', imm=Some("58") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3394, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=3395, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3397, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=3398, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3399, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3400, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3402, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=3403, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=3404, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=3405, opcode='PUSH4', imm=Some("51a87fa7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=3410, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=3411, opcode='PUSH4', imm=Some("600f04e8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=3416, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=3417, opcode='PUSH1', imm=Some("e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3419, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=3420, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=3421, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3422, opcode='PUSH1', imm=Some("41") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3424, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3426, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3427, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3429, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=3430, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=3431, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=3432, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=3433, opcode='PUSH1', imm=Some("1f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3435, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=3436, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=3437, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=3438, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3439, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=3440, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=3441, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3442, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=3443, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=3444, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=3445, opcode='PUSH8', imm=Some("ffffffffffffffff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=3454, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=3455, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=3456, opcode='OR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 +DEBUG azoth_core::encoder: Encoding instruction: pc=3457, opcode='PUSH2', imm=Some("0d89") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=3460, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=3461, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3463, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3464, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=3465, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=3466, opcode='PUSH2', imm=Some("0d4c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=3469, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=3470, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=3471, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=3472, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=3473, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3475, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=3476, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=3477, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=3478, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=3481, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=3482, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=3483, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=3484, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=3485, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=3486, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=3487, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=3488, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=3491, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=3492, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=3493, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=3494, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=3495, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3497, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=3498, opcode='RETURNDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'RETURNDATASIZE' -> byte 0x3d +DEBUG azoth_core::encoder: Encoding instruction: pc=3499, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=3500, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=3501, opcode='RETURNDATACOPY', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'RETURNDATACOPY' -> byte 0x3e +DEBUG azoth_core::encoder: Encoding instruction: pc=3502, opcode='RETURNDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'RETURNDATASIZE' -> byte 0x3d +DEBUG azoth_core::encoder: Encoding instruction: pc=3503, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=3504, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=3505, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=3506, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=3507, opcode='PUSH2', imm=Some("0db8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=3510, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=3511, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=3512, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=3513, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3515, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=3516, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=3520, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3522, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=3523, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=3524, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3525, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3527, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3529, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=3530, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3531, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3532, opcode='PUSH1', imm=Some("16") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3534, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3536, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=3537, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3538, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3539, opcode='PUSH22', imm=Some("10d85b98d95b1b185d1a5bdb881c995c5d595cdd1959") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH22' -> byte 0x75 +DEBUG azoth_core::encoder: Added 22 immediate bytes for PUSH22 +DEBUG azoth_core::encoder: Encoding instruction: pc=3562, opcode='PUSH1', imm=Some("52") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3564, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=3565, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3567, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=3568, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3569, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3570, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3572, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=3573, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=3574, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=3575, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=3576, opcode='PUSH2', imm=Some("0dfd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=3579, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=3580, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=3581, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=3582, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3584, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=3585, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=3589, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3591, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=3592, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=3593, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3594, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3596, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3598, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=3599, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3600, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3601, opcode='PUSH1', imm=Some("2b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3603, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3605, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=3606, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3607, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3608, opcode='PUSH32', imm=Some("f8ca5fca02cd775cc0cc88c4ada13b63bc7e81259322bdad9fc1d8aba668ea6a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=3641, opcode='PUSH32', imm=Some("df7f7e74f9fff57b74317675e7f37d2d7ced63f3fde97f616ffe2afef7c92ded") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=3674, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=3675, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3677, opcode='PUSH2', imm=Some("3276") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=3680, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3682, opcode='CODECOPY', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 +DEBUG azoth_core::encoder: Encoding instruction: pc=3683, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3685, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=3686, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3687, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3689, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=3690, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3691, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3692, opcode='PUSH11', imm=Some("ef17fe807e0bd0d15c04dc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH11' -> byte 0x6a +DEBUG azoth_core::encoder: Added 11 immediate bytes for PUSH11 +DEBUG azoth_core::encoder: Encoding instruction: pc=3704, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3705, opcode='PUSH11', imm=Some("d5f700e98f2664b3681653") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH11' -> byte 0x6a +DEBUG azoth_core::encoder: Added 11 immediate bytes for PUSH11 +DEBUG azoth_core::encoder: Encoding instruction: pc=3717, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=3718, opcode='PUSH11', imm=Some("fb48a0fde6cd10c21692ec") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH11' -> byte 0x6a +DEBUG azoth_core::encoder: Added 11 immediate bytes for PUSH11 +DEBUG azoth_core::encoder: Encoding instruction: pc=3730, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=3731, opcode='PUSH1', imm=Some("aa") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3733, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=3734, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3736, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=3737, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3738, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3739, opcode='PUSH1', imm=Some("84") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3741, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=3742, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=3743, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=3744, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=3745, opcode='PUSH2', imm=Some("0ea6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=3748, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=3749, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=3750, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=3751, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3753, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=3754, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=3758, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3760, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=3761, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=3762, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3763, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3765, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3767, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=3768, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3769, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3770, opcode='PUSH1', imm=Some("22") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3772, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3774, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=3775, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3776, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=3777, opcode='PUSH32', imm=Some("15cc1956c2cc20b556d2cacb6c6ac1105674e5a363d5be58c0c04447cc1cd9cc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=3810, opcode='PUSH16', imm=Some("fe90cdec2f75531b29219d73116bc095") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=3827, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=3828, opcode='PUSH16', imm=Some("e60a6c05ae73c7647e5104e0304e65d5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=3845, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=3846, opcode='PUSH16', imm=Some("4450f181e6f88981d639826f70020579") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=3863, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=3864, opcode='PUSH16', imm=Some("7c49bac1fb2abf6a320641e8ac8815e6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=3881, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=3882, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3883, opcode='PUSH16', imm=Some("e2f53760ae9b3ecb3c2e50926cfa7b19") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=3900, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3901, opcode='PUSH16', imm=Some("82a5ff8598b80c3492a7c7c72ed8c403") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=3918, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3919, opcode='PUSH16', imm=Some("ece8dbfd72bca90640adbc131c961a31") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=3936, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=3937, opcode='PUSH16', imm=Some("0af9128dc6bc27d0ef21979973a52bef") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=3954, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=3955, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=3956, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3958, opcode='MUL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MUL' -> byte 0x02 +DEBUG azoth_core::encoder: Encoding instruction: pc=3959, opcode='PUSH4', imm=Some("15434c2b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=3964, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=3965, opcode='PUSH4', imm=Some("ef6dd62e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=3970, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=3971, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=3972, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3974, opcode='PUSH2', imm=Some("3296") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=3977, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3979, opcode='CODECOPY', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 +DEBUG azoth_core::encoder: Encoding instruction: pc=3980, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3982, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=3983, opcode='OR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 +DEBUG azoth_core::encoder: Encoding instruction: pc=3984, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3986, opcode='PUSH2', imm=Some("32b6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=3989, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3991, opcode='CODECOPY', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 +DEBUG azoth_core::encoder: Encoding instruction: pc=3992, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=3994, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=3995, opcode='OR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 +DEBUG azoth_core::encoder: Encoding instruction: pc=3996, opcode='PUSH16', imm=Some("73bbfbca09d80b53fb5d2535e4172d3f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=4013, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4014, opcode='PUSH16', imm=Some("fa976b454b4c498d68ac23c34641c9cc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=4031, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4032, opcode='PUSH16', imm=Some("5a4f41cdcdd74c122e3d1d48f23ca54a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=4049, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4050, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4051, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4053, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4054, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4055, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4056, opcode='PUSH2', imm=Some("1959") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=4059, opcode='PUSH1', imm=Some("f2") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4061, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=4062, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4064, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4065, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4066, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4067, opcode='PUSH1', imm=Some("84") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4069, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4070, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=4071, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=4072, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=4073, opcode='PUSH2', imm=Some("0fee") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=4076, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=4077, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=4078, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=4079, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4081, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=4082, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=4086, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4088, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=4089, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=4090, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4091, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4093, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4095, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4096, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4097, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4098, opcode='PUSH1', imm=Some("17") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4100, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4102, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4103, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4104, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4105, opcode='PUSH32', imm=Some("436f6e747261637420616c7265616479e31284bfcdb78fd8142b9c4454f0d90e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=4138, opcode='PUSH16', imm=Some("4fc19089ddec2007f4634aa9fd24d91b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=4155, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=4156, opcode='PUSH16', imm=Some("d1f79b6194ffe11f5a462b83c19233a8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=4173, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=4174, opcode='PUSH16', imm=Some("5c9a04b92041eac0ba0efd694febc10b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=4191, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=4192, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4193, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=4194, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4196, opcode='PUSH2', imm=Some("32d6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=4199, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4201, opcode='CODECOPY', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 +DEBUG azoth_core::encoder: Encoding instruction: pc=4202, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4204, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=4205, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=4206, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4208, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4209, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4210, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4211, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4213, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4214, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=4215, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=4216, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=4217, opcode='PUSH2', imm=Some("107e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=4220, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=4221, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=4222, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=4223, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4225, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=4226, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=4230, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4232, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=4233, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=4234, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4235, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4237, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4239, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4240, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4241, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4242, opcode='PUSH1', imm=Some("1e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4244, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4246, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4247, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4248, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4249, opcode='PUSH32', imm=Some("4c25e699040683bdada8e88c6721e7d56ecce32a09c8179e3caa3bc4e3c9b30b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=4282, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4284, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4285, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4286, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4287, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4289, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4290, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=4291, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=4292, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=4293, opcode='PUSH2', imm=Some("10ca") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=4296, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=4297, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=4298, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=4299, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4301, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=4302, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=4306, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4308, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=4309, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=4310, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4311, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4313, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4315, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4316, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4317, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4318, opcode='PUSH1', imm=Some("1f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4320, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4322, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4323, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4324, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4325, opcode='PUSH32', imm=Some("0bf824597cf7ae83b4761f29f4faa57dc20e51731c6648c7a83f41c20890e036") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=4358, opcode='PUSH2', imm=Some("ac5f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=4361, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4362, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=4363, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4365, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4366, opcode='DIV', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DIV' -> byte 0x04 +DEBUG azoth_core::encoder: Encoding instruction: pc=4367, opcode='PUSH2', imm=Some("6645") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=4370, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4371, opcode='PUSH16', imm=Some("534a8d0914ba721f9c1f2c9a85f6c31f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=4388, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=4389, opcode='PUSH16', imm=Some("1273008353f9c6508299a2d560199559") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=4406, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=4407, opcode='PUSH16', imm=Some("9aeff55dd9a4f67868cd91eb8d398cd9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=4424, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=4425, opcode='PUSH16', imm=Some("93d99036a31c53543c1de9496d539fd3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=4442, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=4443, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4444, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=4445, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4447, opcode='PUSH2', imm=Some("32f6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=4450, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4452, opcode='CODECOPY', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 +DEBUG azoth_core::encoder: Encoding instruction: pc=4453, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4455, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=4456, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4457, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4459, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4460, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4461, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4462, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4464, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4465, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=4466, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=4467, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4469, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=4470, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=4471, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=4472, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=4473, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4474, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=4475, opcode='PUSH2', imm=Some("1182") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=4478, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=4479, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=4480, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4481, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=4482, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=4483, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4484, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=4485, opcode='TIMESTAMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'TIMESTAMP' -> byte 0x42 +DEBUG azoth_core::encoder: Encoding instruction: pc=4486, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=4487, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=4488, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4489, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=4490, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=4491, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=4492, opcode='PUSH2', imm=Some("1191") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=4495, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=4496, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=4497, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=4498, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4500, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4502, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=4503, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=4507, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4509, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=4510, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=4511, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4512, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4514, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4516, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4517, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4518, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4519, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4521, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4523, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4524, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4525, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4526, opcode='PUSH32', imm=Some("6f0b597464682658e6873e17a615424678100a96a72bebf59633b58695a810ed") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=4559, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4561, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4562, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4563, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4564, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=4565, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=4566, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=4567, opcode='PUSH2', imm=Some("11dc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=4570, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=4571, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=4572, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=4573, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4575, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=4576, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=4580, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4582, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=4583, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=4584, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4585, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4587, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4589, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4590, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4591, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4592, opcode='PUSH1', imm=Some("1d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4594, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4596, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4597, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4598, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4599, opcode='PUSH32', imm=Some("7248126b9f7413b1dc7f599ba84d75feab7be5764800846fadf66a93dc6d5c17") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=4632, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4634, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4635, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4636, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4637, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4639, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4640, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=4641, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=4642, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4644, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=4645, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=4646, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4647, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=4648, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4649, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4650, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=4651, opcode='PUSH2', imm=Some("0cda") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=4654, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=4655, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=4656, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=4657, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=4658, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=4659, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=4660, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4661, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=4662, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4663, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4664, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=4665, opcode='PUSH2', imm=Some("0cda") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=4668, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=4669, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=4670, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=4671, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=4672, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4673, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4674, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=4675, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=4676, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4677, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=4678, opcode='PUSH2', imm=Some("0cda") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=4681, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=4682, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=4683, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=4684, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=4685, opcode='PUSH2', imm=Some("1252") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=4688, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=4689, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=4690, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=4691, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4693, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=4694, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=4698, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4700, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=4701, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=4702, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4703, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4705, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4707, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4708, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4709, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4710, opcode='PUSH1', imm=Some("14") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4712, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4714, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4715, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4716, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4717, opcode='PUSH32', imm=Some("149c14eedc6737ac4733a63fa476c41b6cd68f961acdb68ced1a533b310c8ccd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=4750, opcode='PUSH2', imm=Some("9b8b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=4753, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=4754, opcode='PUSH2', imm=Some("9c1a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=4757, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4758, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=4759, opcode='PUSH2', imm=Some("80f1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=4762, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4763, opcode='PUSH1', imm=Some("07") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4765, opcode='MUL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MUL' -> byte 0x02 +DEBUG azoth_core::encoder: Encoding instruction: pc=4766, opcode='PUSH32', imm=Some("6f49dbf72418ef9acbfe3063ddbd7fddfdffebffdbdbffffdfdb8eef5beda67f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=4799, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=4800, opcode='PUSH8', imm=Some("b09b6550b0b3111c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=4809, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4810, opcode='PUSH8', imm=Some("4a5927193ab4165e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=4819, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=4820, opcode='PUSH8', imm=Some("f59b28ea0024a36c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=4829, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=4830, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4831, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4833, opcode='MUL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MUL' -> byte 0x02 +DEBUG azoth_core::encoder: Encoding instruction: pc=4834, opcode='PUSH32', imm=Some("f8bd4d7c3aaf7a463892cddeb7dafddbdd7d0e18db7fd8fbfb5dfbffeeffdf7b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=4867, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=4868, opcode='PUSH1', imm=Some("62") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4870, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=4871, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4873, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4874, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4875, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4876, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4878, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4879, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=4880, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=4881, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=4882, opcode='PUSH2', imm=Some("1317") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=4885, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=4886, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=4887, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=4888, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4890, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=4891, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=4895, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4897, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=4898, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=4899, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4900, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4902, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4904, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4905, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4906, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4907, opcode='PUSH1', imm=Some("1d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4909, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4911, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4912, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4913, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4914, opcode='PUSH32', imm=Some("c3e041838ba15e22480485b133cd0fa565535066fb619fb5ac895f1f9373ed10") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=4947, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4949, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4950, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4951, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=4952, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4954, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4955, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=4956, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=4957, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4958, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=4959, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4960, opcode='PUSH1', imm=Some("1e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4962, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=4963, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=4964, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=4965, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=4966, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4967, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4968, opcode='SLT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 +DEBUG azoth_core::encoder: Encoding instruction: pc=4969, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=4970, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=4973, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=4974, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4975, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=4976, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=4977, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=4978, opcode='PUSH8', imm=Some("ffffffffffffffff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=4987, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=4988, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=4989, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=4992, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=4993, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=4995, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=4996, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=4997, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=4998, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=4999, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=5000, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=5001, opcode='SGT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SGT' -> byte 0x13 +DEBUG azoth_core::encoder: Encoding instruction: pc=5002, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=5005, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=5006, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=5007, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=5008, opcode='PUSH8', imm=Some("ffffffffffffffff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=5017, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=5018, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=5019, opcode='PUSH2', imm=Some("0d89") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=5022, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=5023, opcode='PUSH1', imm=Some("1f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5025, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5026, opcode='PUSH1', imm=Some("1f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5028, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=5029, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=5030, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5032, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5033, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=5034, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=5035, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=5036, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=5037, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=5038, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=5039, opcode='PUSH2', imm=Some("0fee") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=5042, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=5043, opcode='PUSH2', imm=Some("138f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=5046, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=5047, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=5048, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=5049, opcode='PUSH2', imm=Some("0ffc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=5052, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5054, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=5055, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=5056, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=5057, opcode='PUSH2', imm=Some("0d67") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=5060, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=5061, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=5062, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=5063, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=5064, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=5065, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=5066, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=5067, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=5068, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=5069, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5070, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=5071, opcode='PUSH2', imm=Some("0194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=5074, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=5075, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=5076, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=5077, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5079, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=5080, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=5081, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=5082, opcode='SWAP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 +DEBUG azoth_core::encoder: Encoding instruction: pc=5083, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5084, opcode='CALLDATACOPY', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATACOPY' -> byte 0x37 +DEBUG azoth_core::encoder: Encoding instruction: pc=5085, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5086, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5087, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=5088, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=5089, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=5090, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=5091, opcode='PUSH2', imm=Some("13e8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=5094, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=5095, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=5096, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=5097, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5099, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=5100, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=5104, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5106, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=5107, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=5108, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=5109, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5111, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5113, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=5114, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5115, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=5116, opcode='PUSH1', imm=Some("1a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5118, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5120, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=5121, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5122, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=5123, opcode='PUSH32', imm=Some("abc6b3c4e91a2980fe57ea86f4c6d8d3843053e089adb6678e944ba7e0c31c52") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=5156, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5158, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=5159, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5160, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=5161, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5163, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=5164, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=5165, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=5166, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=5167, opcode='PUSH2', imm=Some("1434") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=5170, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=5171, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=5172, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=5173, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5175, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=5176, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=5180, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5182, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=5183, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=5184, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=5185, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5187, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5189, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=5190, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5191, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=5192, opcode='PUSH1', imm=Some("1c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5194, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5196, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=5197, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5198, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=5199, opcode='PUSH32', imm=Some("fe6729b2cc82f9a3078d07cde28d0463bf8e9a28af78ae6a3949c53a6fcb35f6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=5232, opcode='PUSH32', imm=Some("6b8944fa13fd55fc397c692325f2da106d408f96c4ad4085dc9b92f083a0460c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=5265, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=5266, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5268, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=5269, opcode='DIV', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DIV' -> byte 0x04 +DEBUG azoth_core::encoder: Encoding instruction: pc=5270, opcode='PUSH32', imm=Some("b8fbebb7f577eedfd2a40fe7dddbf2fff6671fe3abffcdef7ff7ffffa7ffbff0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=5303, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=5304, opcode='PUSH4', imm=Some("80d43b29") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=5309, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5310, opcode='PUSH4', imm=Some("4487b066") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=5315, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5316, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=5317, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=5318, opcode='PUSH4', imm=Some("90d78e9b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=5323, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=5324, opcode='PUSH4', imm=Some("e07a73f4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=5329, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=5330, opcode='PUSH4', imm=Some("be76adcf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=5335, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=5336, opcode='PUSH4', imm=Some("524da39b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=5341, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=5342, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=5343, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=5344, opcode='PUSH32', imm=Some("d88f0864b0058c3d7ecf6d8de535a71eb023678246bcbf8204a634a14278e548") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=5377, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=5378, opcode='PUSH2', imm=Some("7e2f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=5381, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=5382, opcode='PUSH2', imm=Some("ce41") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=5385, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=5386, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5388, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=5389, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5390, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=5391, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5393, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=5394, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=5395, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=5396, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=5397, opcode='PUSH2', imm=Some("151a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=5400, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=5401, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=5402, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=5403, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5405, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=5406, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=5410, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5412, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=5413, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=5414, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=5415, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5417, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5419, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=5420, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5421, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=5422, opcode='PUSH1', imm=Some("19") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5424, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5426, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=5427, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5428, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=5429, opcode='PUSH32', imm=Some("d67e1fd60c59571887de9092cd995182a02b0621672578e76a66e56db420d4ec") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=5462, opcode='PUSH8', imm=Some("a4d05a72816e467b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=5471, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5472, opcode='PUSH8', imm=Some("9cc28303eed2703d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=5481, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=5482, opcode='PUSH8', imm=Some("243c8c1bb5f04180") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=5491, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=5492, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5493, opcode='PUSH16', imm=Some("cb7aa8948e9e0a8892083c229d4ab7a3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=5510, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=5511, opcode='PUSH16', imm=Some("43ac4d32a18e2b952ff0feaaf3c1cac5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=5528, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=5529, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=5530, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=5531, opcode='PUSH32', imm=Some("afc5a06bd7b668e76c086f2d617ae779eaaade0553ea18343790db47dc96417f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=5564, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=5565, opcode='PUSH32', imm=Some("7febfffddbdf7ffffff6fe37beffaffefffffe6feff6df7dbfe7f47dfeffffbf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=5598, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=5599, opcode='PUSH32', imm=Some("faebfa7eeeffffaff9d7f7bdd91ddf9fffffff7d7dfddbce2f7ff5ac7fd69e3a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=5632, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=5633, opcode='PUSH32', imm=Some("2f3d43db5e65db8f777192d01e91127ab0aeaa4bf981dbdcc127b42c7ed7490b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=5666, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=5667, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=5668, opcode='PUSH2', imm=Some("bcd1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=5671, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5672, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5674, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=5675, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5676, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=5677, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5679, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=5680, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=5681, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=5682, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=5683, opcode='PUSH2', imm=Some("1638") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=5686, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=5687, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=5688, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=5689, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5691, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=5692, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=5696, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5698, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=5699, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=5700, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=5701, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5703, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5705, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=5706, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5707, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=5708, opcode='PUSH1', imm=Some("16") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5710, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5712, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=5713, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5714, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=5715, opcode='PUSH32', imm=Some("4647ddb50e8ad6a6f11504319aaf4bb83d84303d14cf58881585a25b4daf3a1a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=5748, opcode='PUSH8', imm=Some("3edd47452c305361") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=5757, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=5758, opcode='PUSH8', imm=Some("a9c7ce544651b9f1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=5767, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=5768, opcode='PUSH8', imm=Some("39299da8e9a0bd40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=5777, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=5778, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5779, opcode='PUSH4', imm=Some("cdc15070") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=5784, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=5785, opcode='PUSH4', imm=Some("3258a8aa") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=5790, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=5791, opcode='PUSH4', imm=Some("0ea80f19") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=5796, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=5797, opcode='PUSH4', imm=Some("c5e54b5c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=5802, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=5803, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=5804, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5806, opcode='PUSH2', imm=Some("3316") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=5809, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5811, opcode='CODECOPY', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 +DEBUG azoth_core::encoder: Encoding instruction: pc=5812, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5814, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=5815, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=5816, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=5817, opcode='PUSH16', imm=Some("0df779ba4da27d1de0b8bc5e4f158d96") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=5834, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=5835, opcode='PUSH16', imm=Some("d286baed8d53baadde879b15f7d4a505") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=5852, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=5853, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=5854, opcode='PUSH16', imm=Some("3cf1c33323290bc5178e786127398a1b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=5871, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5872, opcode='PUSH16', imm=Some("0abd3cc692a8b14a229d9c22e7d0b7be") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=5889, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=5890, opcode='PUSH16', imm=Some("1e1998612d200240d4d2c6d8b6512b68") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=5907, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=5908, opcode='PUSH16', imm=Some("43db3233075bde34d9965af833994fc9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=5925, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=5926, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=5927, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=5928, opcode='PUSH2', imm=Some("4697") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=5931, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=5932, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=5933, opcode='PUSH1', imm=Some("52") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5935, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=5936, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5938, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=5939, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=5940, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=5941, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5943, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=5944, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=5945, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=5946, opcode='PUSH2', imm=Some("1149") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=5949, opcode='PUSH2', imm=Some("1172") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=5952, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=5953, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=5954, opcode='PUSH2', imm=Some("1766") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=5957, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=5958, opcode='PUSH12', imm=Some("ffffffffffffffffffffffff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH12' -> byte 0x6b +DEBUG azoth_core::encoder: Added 12 immediate bytes for PUSH12 +DEBUG azoth_core::encoder: Encoding instruction: pc=5971, opcode='PUSH1', imm=Some("a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5973, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=5974, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5976, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=5977, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=5978, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5980, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=5981, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=5982, opcode='PUSH1', imm=Some("05") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5984, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=5985, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=5986, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5988, opcode='SSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 +DEBUG azoth_core::encoder: Encoding instruction: pc=5989, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=5990, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=5991, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=5993, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=5994, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=5998, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6000, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=6001, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=6002, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=6003, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6005, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6007, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=6008, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6009, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=6010, opcode='PUSH1', imm=Some("21") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6012, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6014, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=6015, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6016, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=6017, opcode='PUSH32', imm=Some("47616f6eef77a272e5f76574207f6e697def3066ff6e74eba5efcabe0851de5e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=6050, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6053, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6054, opcode='PUSH8', imm=Some("b7c34f7f9560b322") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=6063, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6064, opcode='PUSH8', imm=Some("3f8d6f9b161baaf8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=6073, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=6074, opcode='PUSH8', imm=Some("91a2cac24a365504") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=6083, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=6084, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6085, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=6086, opcode='PUSH2', imm=Some("ab0c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6089, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6090, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=6091, opcode='PUSH2', imm=Some("b7e7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6094, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6095, opcode='PUSH8', imm=Some("2405a5712a2634bb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=6104, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6105, opcode='PUSH8', imm=Some("15bfee4c71ce7383") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=6114, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=6115, opcode='PUSH8', imm=Some("ac3506be36b68813") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=6124, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6125, opcode='PUSH8', imm=Some("db6581030007674c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=6134, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6135, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6136, opcode='PUSH8', imm=Some("c6f0c93987ab6e03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=6145, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=6146, opcode='PUSH8', imm=Some("c81713fd6b23f41e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=6155, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=6156, opcode='PUSH8', imm=Some("0eabbed34475269b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=6165, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=6166, opcode='PUSH8', imm=Some("db85a818aaa47a3d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=6175, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=6176, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6177, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=6178, opcode='PUSH32', imm=Some("53ffeeff6f7c357b7d7bfffffdf7f9fdee75ebeb6f7f6d34eff7f0eb1f7ff5ee") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=6211, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=6212, opcode='PUSH4', imm=Some("a781df5f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=6217, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6218, opcode='PUSH4', imm=Some("a2a520c1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=6223, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=6224, opcode='PUSH4', imm=Some("48d1f2c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=6229, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=6230, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6231, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=6232, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6234, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=6235, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6236, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=6237, opcode='PUSH1', imm=Some("65") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6239, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6241, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=6242, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6244, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=6245, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6246, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=6247, opcode='PUSH1', imm=Some("84") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6249, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6250, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=6251, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6252, opcode='PUSH4', imm=Some("fd86ddcf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=6257, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6258, opcode='PUSH4', imm=Some("704567f2") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=6263, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=6264, opcode='PUSH4', imm=Some("f25dfd63") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=6269, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=6270, opcode='PUSH4', imm=Some("4c9afd09") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=6275, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=6276, opcode='PUSH1', imm=Some("e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6278, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=6279, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=6280, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=6281, opcode='PUSH1', imm=Some("32") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6283, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6285, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=6286, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6288, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=6289, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=6290, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6291, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6292, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=6293, opcode='PUSH2', imm=Some("189b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6296, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=6297, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6298, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6299, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6300, opcode='PUSH2', imm=Some("186b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6303, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6304, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6305, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6306, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=6307, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=6308, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=6309, opcode='PUSH2', imm=Some("189b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6312, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=6313, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6314, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6315, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6316, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6317, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=6318, opcode='PUSH2', imm=Some("18b3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6321, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=6322, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6323, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6324, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6326, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=6327, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=6331, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6333, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=6334, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=6335, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=6336, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6338, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6340, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=6341, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6342, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=6343, opcode='PUSH1', imm=Some("10") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6345, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6347, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=6348, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6349, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=6350, opcode='PUSH31', imm=Some("1448032829020c2040c0000200a2a6939b98b27b13591990535917846f57d4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH31' -> byte 0x7e +DEBUG azoth_core::encoder: Added 31 immediate bytes for PUSH31 +DEBUG azoth_core::encoder: Encoding instruction: pc=6382, opcode='PUSH2', imm=Some("db0c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6385, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6386, opcode='PUSH32', imm=Some("fee382e853d0e930c32808fbf9774c516a1bef995b3effce7eb124a70ffb9bfa") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=6419, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=6420, opcode='PUSH15', imm=Some("c44de153ba74ac4d50ad69ee687238") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH15' -> byte 0x6e +DEBUG azoth_core::encoder: Added 15 immediate bytes for PUSH15 +DEBUG azoth_core::encoder: Encoding instruction: pc=6436, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=6437, opcode='PUSH15', imm=Some("2b159eac45434b9e2f42956e346d38") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH15' -> byte 0x6e +DEBUG azoth_core::encoder: Added 15 immediate bytes for PUSH15 +DEBUG azoth_core::encoder: Encoding instruction: pc=6453, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=6454, opcode='OR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 +DEBUG azoth_core::encoder: Encoding instruction: pc=6455, opcode='PUSH4', imm=Some("9467835a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=6460, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6461, opcode='PUSH4', imm=Some("df3e0180") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=6466, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6467, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6468, opcode='PUSH2', imm=Some("6afd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6471, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6472, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=6473, opcode='PUSH16', imm=Some("047ff6b77e47123de021b1f658247e32") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=6490, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6491, opcode='PUSH16', imm=Some("adfdd66b44325cb3c164112c286a903f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=6508, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6509, opcode='PUSH16', imm=Some("85573386cdeb666fb5d09b22e9c7234a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=6526, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6527, opcode='PUSH16', imm=Some("d87c10de6fa32a9ebcabb5c295ac2259") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=6544, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6545, opcode='OR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 +DEBUG azoth_core::encoder: Encoding instruction: pc=6546, opcode='PUSH1', imm=Some("82") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6548, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=6549, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6551, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=6552, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6553, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=6554, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6556, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6557, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=6558, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6559, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6561, opcode='PUSH1', imm=Some("f6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6563, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=6564, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=6565, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=6566, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6567, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6568, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6570, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=6571, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=6572, opcode='PUSH2', imm=Some("0cda") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6575, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=6576, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6577, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6578, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6580, opcode='PUSH1', imm=Some("bf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6582, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=6583, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=6584, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=6585, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6586, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6587, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6589, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=6590, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=6591, opcode='PUSH2', imm=Some("0cda") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6594, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=6595, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6596, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6597, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6599, opcode='PUSH1', imm=Some("b6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6601, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=6602, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=6603, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=6604, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6605, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6606, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6608, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=6609, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=6610, opcode='PUSH2', imm=Some("0cda") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6613, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=6614, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6615, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6616, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6618, opcode='PUSH1', imm=Some("7f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6620, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=6621, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=6622, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=6623, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6624, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6625, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6627, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=6628, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=6629, opcode='PUSH2', imm=Some("0cda") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6632, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=6633, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6634, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6635, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6637, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=6638, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6640, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6641, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6642, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6644, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=6645, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=6646, opcode='PUSH2', imm=Some("0cda") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6649, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=6650, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6651, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6652, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=6653, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=6654, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=6655, opcode='PUSH2', imm=Some("189b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6658, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=6659, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6661, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6662, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6663, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6664, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6665, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6666, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=6667, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=6668, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=6669, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=6670, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=6671, opcode='PUSH2', imm=Some("189b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6674, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=6675, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6676, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6678, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6679, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6680, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6681, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6682, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=6683, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6684, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=6685, opcode='PUSH2', imm=Some("12dc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6688, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6690, opcode='PUSH1', imm=Some("fe") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6692, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=6693, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6695, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6697, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6699, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=6700, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=6701, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=6702, opcode='PUSH2', imm=Some("12d4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6705, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6708, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=6709, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=6710, opcode='PUSH2', imm=Some("1892") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6713, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6714, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6715, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=6716, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6718, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6720, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6722, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=6723, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=6724, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=6725, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=6726, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6727, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6728, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6729, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=6730, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=6731, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=6732, opcode='PUSH2', imm=Some("18ac") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6735, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6736, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6737, opcode='PUSH1', imm=Some("1f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6739, opcode='PUSH1', imm=Some("fb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6741, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=6742, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6744, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6746, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6748, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=6749, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=6750, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=6751, opcode='PUSH2', imm=Some("12f7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6754, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6757, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=6758, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=6759, opcode='PUSH2', imm=Some("1892") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6762, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6763, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6764, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=6765, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=6766, opcode='PUSH2', imm=Some("1b15") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6769, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=6770, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=6771, opcode='PUSH2', imm=Some("132b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6774, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6777, opcode='PUSH2', imm=Some("1326") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6780, opcode='PUSH2', imm=Some("1321") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6783, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6786, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6789, opcode='PUSH2', imm=Some("1331") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6792, opcode='SWAP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP8' -> byte 0x97 +DEBUG azoth_core::encoder: Encoding instruction: pc=6793, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=6794, opcode='DUP13', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP13' -> byte 0x8c +DEBUG azoth_core::encoder: Encoding instruction: pc=6795, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6798, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6799, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6800, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6802, opcode='SHR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c +DEBUG azoth_core::encoder: Encoding instruction: pc=6803, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6804, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6805, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6806, opcode='PUSH2', imm=Some("199e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6809, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6810, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6811, opcode='PUSH2', imm=Some("19ea") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6814, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6815, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6816, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6817, opcode='PUSH2', imm=Some("0cfb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6820, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6821, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6822, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6823, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6824, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=6825, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6826, opcode='PUSH1', imm=Some("08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6828, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=6829, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=6830, opcode='PUSH2', imm=Some("1b00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6833, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=6834, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=6835, opcode='PUSH2', imm=Some("1348") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6838, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=6839, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=6840, opcode='PUSH2', imm=Some("225b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6843, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6844, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6845, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=6846, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=6847, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=6848, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6849, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=6850, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6851, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=6852, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=6853, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=6854, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=6855, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=6856, opcode='PUSH2', imm=Some("1afb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6859, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=6860, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6862, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6863, opcode='PUSH1', imm=Some("08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6865, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=6866, opcode='PUSH2', imm=Some("137e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6869, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6872, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6875, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6878, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=6879, opcode='DUP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 +DEBUG azoth_core::encoder: Encoding instruction: pc=6880, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6883, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6884, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6885, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=6886, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6888, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6890, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6892, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=6893, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=6894, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=6895, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=6896, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6897, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6898, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6899, opcode='OR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 +DEBUG azoth_core::encoder: Encoding instruction: pc=6900, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=6901, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6902, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=6903, opcode='PUSH2', imm=Some("1ac2") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6906, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6907, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6908, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=6909, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=6910, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=6911, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6912, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6913, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=6914, opcode='PUSH2', imm=Some("139a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6917, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6919, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=6920, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=6921, opcode='DUP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 +DEBUG azoth_core::encoder: Encoding instruction: pc=6922, opcode='PUSH2', imm=Some("2082") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6925, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6926, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6927, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=6928, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6929, opcode='PUSH2', imm=Some("1aa9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6932, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6933, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6934, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=6935, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6937, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=6938, opcode='PUSH2', imm=Some("1aa7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6941, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6942, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6943, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=6944, opcode='PUSH2', imm=Some("1b25") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=6947, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=6948, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=6949, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=6950, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6952, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=6953, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=6957, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6959, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=6960, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=6961, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=6962, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6964, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6966, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=6967, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6968, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=6969, opcode='PUSH1', imm=Some("21") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6971, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=6973, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=6974, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=6975, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=6976, opcode='PUSH32', imm=Some("dd4fe724d77e3c6577302a303c515ffdee9dffb7aff7479ffff31dae7e07efc4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=7009, opcode='PUSH32', imm=Some("fefb63ee6d3ceff15ff62ebbff73dd5be7abfeefaa976ffd7ff67cb6ea567eb7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=7042, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=7043, opcode='PUSH16', imm=Some("8579f77bd5f8a87b2d3834b0dbb04df1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=7060, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=7061, opcode='PUSH16', imm=Some("fd277a1a80452d2fc560fb4ea561b158") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=7078, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=7079, opcode='PUSH16', imm=Some("480982906e6d160051f864cc777e7cc4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=7096, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=7097, opcode='PUSH16', imm=Some("20f4dd01ff973e68a55d920c919b720f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=7114, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=7115, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=7116, opcode='PUSH15', imm=Some("153a89a3fc98bbf1c238c91cb9c3bd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH15' -> byte 0x6e +DEBUG azoth_core::encoder: Added 15 immediate bytes for PUSH15 +DEBUG azoth_core::encoder: Encoding instruction: pc=7132, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=7133, opcode='PUSH15', imm=Some("2776d84260152a09e9384a7822be76") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH15' -> byte 0x6e +DEBUG azoth_core::encoder: Added 15 immediate bytes for PUSH15 +DEBUG azoth_core::encoder: Encoding instruction: pc=7149, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=7150, opcode='PUSH15', imm=Some("ff2b9b8ad09eb22d9735a205fae31f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH15' -> byte 0x6e +DEBUG azoth_core::encoder: Added 15 immediate bytes for PUSH15 +DEBUG azoth_core::encoder: Encoding instruction: pc=7166, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=7167, opcode='PUSH15', imm=Some("ed1b09995be33511fcc0642a9311c8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH15' -> byte 0x6e +DEBUG azoth_core::encoder: Added 15 immediate bytes for PUSH15 +DEBUG azoth_core::encoder: Encoding instruction: pc=7183, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=7184, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=7185, opcode='PUSH2', imm=Some("b3b8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7188, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=7189, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=7190, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7192, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=7193, opcode='DIV', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DIV' -> byte 0x04 +DEBUG azoth_core::encoder: Encoding instruction: pc=7194, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7196, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=7197, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=7198, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=7199, opcode='PUSH1', imm=Some("67") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7201, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7203, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=7204, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7206, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=7207, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=7208, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=7209, opcode='PUSH1', imm=Some("84") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7211, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=7212, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=7213, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7214, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=7215, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=7216, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=7217, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=7218, opcode='PUSH2', imm=Some("1422") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7221, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7223, opcode='PUSH1', imm=Some("fe") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7225, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=7226, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7228, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7230, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7232, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=7233, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=7234, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=7235, opcode='PUSH2', imm=Some("12d4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7238, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7241, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=7242, opcode='DUP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 +DEBUG azoth_core::encoder: Encoding instruction: pc=7243, opcode='PUSH2', imm=Some("1892") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7246, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7247, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7248, opcode='PUSH1', imm=Some("1f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7250, opcode='PUSH1', imm=Some("fb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7252, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=7253, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7255, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7257, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7259, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=7260, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=7261, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=7262, opcode='PUSH2', imm=Some("143d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7265, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7268, opcode='DUP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 +DEBUG azoth_core::encoder: Encoding instruction: pc=7269, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=7270, opcode='PUSH2', imm=Some("1892") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7273, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7274, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7275, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=7276, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=7277, opcode='PUSH2', imm=Some("1ce1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7280, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=7281, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=7282, opcode='PUSH2', imm=Some("132b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7285, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7288, opcode='PUSH2', imm=Some("1326") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7291, opcode='PUSH2', imm=Some("1321") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7294, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7297, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7300, opcode='PUSH2', imm=Some("1461") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7303, opcode='SWAP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP8' -> byte 0x97 +DEBUG azoth_core::encoder: Encoding instruction: pc=7304, opcode='DUP12', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b +DEBUG azoth_core::encoder: Encoding instruction: pc=7305, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=7306, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7309, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7310, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7311, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=7312, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7313, opcode='PUSH1', imm=Some("05") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7315, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=7316, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=7317, opcode='PUSH2', imm=Some("1ccc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7320, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=7321, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=7322, opcode='PUSH2', imm=Some("1495") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7325, opcode='PUSH2', imm=Some("149a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7328, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=7329, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=7330, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=7331, opcode='PUSH1', imm=Some("05") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7333, opcode='PUSH1', imm=Some("fd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7335, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=7336, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=7337, opcode='PUSH2', imm=Some("148e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7340, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7343, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=7344, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7346, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7348, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=7349, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=7350, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=7351, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7354, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7355, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7356, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=7357, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=7358, opcode='PUSH2', imm=Some("1b1e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7361, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7362, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7363, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7366, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7367, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7368, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=7369, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=7370, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=7371, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7372, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7373, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=7374, opcode='PUSH2', imm=Some("14ad") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7377, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7379, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=7380, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=7381, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=7382, opcode='PUSH2', imm=Some("2082") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7385, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7386, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7387, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=7388, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=7389, opcode='PUSH2', imm=Some("1c90") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7392, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7393, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7394, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=7395, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7397, opcode='PUSH2', imm=Some("1c8e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7400, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7401, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7402, opcode='PUSH2', imm=Some("14d2") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7405, opcode='PUSH2', imm=Some("14da") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7408, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=7409, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=7410, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=7411, opcode='SWAP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 +DEBUG azoth_core::encoder: Encoding instruction: pc=7412, opcode='PUSH2', imm=Some("14e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7415, opcode='SWAP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP9' -> byte 0x98 +DEBUG azoth_core::encoder: Encoding instruction: pc=7416, opcode='SWAP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP8' -> byte 0x97 +DEBUG azoth_core::encoder: Encoding instruction: pc=7417, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=7418, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=7419, opcode='PUSH2', imm=Some("13ab") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7422, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7423, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7424, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=7425, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=7426, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=7427, opcode='PUSH2', imm=Some("13ab") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7430, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7431, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7432, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=7433, opcode='PUSH2', imm=Some("251e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7436, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7437, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7438, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=7439, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7440, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7441, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=7442, opcode='PUSH2', imm=Some("1d17") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7445, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=7446, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7447, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7448, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7450, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=7451, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=7455, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7457, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=7458, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=7459, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=7460, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7462, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7464, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=7465, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=7466, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=7467, opcode='PUSH1', imm=Some("13") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7469, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7471, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=7472, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=7473, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=7474, opcode='PUSH32', imm=Some("1e9438793f135a22938bd86f6c26c4f9b9d18f698ba13f857e9392b3129162eb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=7507, opcode='PUSH32', imm=Some("e16bc786c0eca5dd6c74279093ddd1edac45372cb665e6d0b7c304542f7457db") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=7540, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=7541, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7543, opcode='PUSH2', imm=Some("3336") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7546, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7548, opcode='CODECOPY', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 +DEBUG azoth_core::encoder: Encoding instruction: pc=7549, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7551, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=7552, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=7553, opcode='PUSH1', imm=Some("6c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7555, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=7556, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7558, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=7559, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=7560, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=7561, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7563, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=7564, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=7565, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7566, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=7567, opcode='PUSH2', imm=Some("1d94") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7570, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=7571, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7572, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7573, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7575, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=7576, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=7580, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7582, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=7583, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=7584, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=7585, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7587, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7589, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=7590, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=7591, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=7592, opcode='PUSH1', imm=Some("10") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7594, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7596, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=7597, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=7598, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=7599, opcode='PUSH32', imm=Some("558162d93b8f3fc5a37d7e277929e2566fce6f6ca735927e100f6e038651e4f3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=7632, opcode='PUSH32', imm=Some("b57fe274fa4abfa5a16d6d216fa99bc21879fd0e3e6a0eeeb8867cfffba3a7a4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=7665, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=7666, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=7667, opcode='PUSH16', imm=Some("21171abf88613e2a01946e4fe77981d6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=7684, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=7685, opcode='PUSH16', imm=Some("6ea56fab17a755f626b4c35d7b476f26") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=7702, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=7703, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=7704, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=7705, opcode='PUSH2', imm=Some("6a2c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7708, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=7709, opcode='PUSH32', imm=Some("5fae7d1ab2a311c77de3ee6916332142fa7bfdff3fea5d37efeffbfcffdefd6f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=7742, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=7743, opcode='PUSH8', imm=Some("a6f752de11baaba3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=7752, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=7753, opcode='PUSH8', imm=Some("9a621aeac7cdadfb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=7762, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=7763, opcode='PUSH8', imm=Some("5d7cd5679b8cdf2c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=7772, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=7773, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=7774, opcode='PUSH1', imm=Some("0b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7776, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=7777, opcode='DIV', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DIV' -> byte 0x04 +DEBUG azoth_core::encoder: Encoding instruction: pc=7778, opcode='PUSH15', imm=Some("b43697fe2861de2cd90553215a3b84") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH15' -> byte 0x6e +DEBUG azoth_core::encoder: Added 15 immediate bytes for PUSH15 +DEBUG azoth_core::encoder: Encoding instruction: pc=7794, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=7795, opcode='PUSH15', imm=Some("3b2927eb918bdfcd201438bca4bff8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH15' -> byte 0x6e +DEBUG azoth_core::encoder: Added 15 immediate bytes for PUSH15 +DEBUG azoth_core::encoder: Encoding instruction: pc=7811, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=7812, opcode='OR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 +DEBUG azoth_core::encoder: Encoding instruction: pc=7813, opcode='PUSH1', imm=Some("84") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7815, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=7816, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7818, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=7819, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=7820, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=7821, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7823, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=7824, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=7825, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7826, opcode='SWAP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 +DEBUG azoth_core::encoder: Encoding instruction: pc=7827, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=7828, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=7829, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=7830, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=7831, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=7832, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=7833, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=7834, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=7835, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=7836, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=7837, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=7838, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=7839, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=7840, opcode='PUSH2', imm=Some("1fde") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7843, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=7844, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7845, opcode='PUSH2', imm=Some("1fd5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7848, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=7849, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7850, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7852, opcode='PUSH2', imm=Some("1594") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7855, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7858, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7861, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=7862, opcode='PUSH2', imm=Some("159c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7865, opcode='SWAP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 +DEBUG azoth_core::encoder: Encoding instruction: pc=7866, opcode='PUSH1', imm=Some("c0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7868, opcode='SWAP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 +DEBUG azoth_core::encoder: Encoding instruction: pc=7869, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7872, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7873, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7874, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=7875, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=7876, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=7877, opcode='PUSH2', imm=Some("1d10") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7880, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7881, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7882, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=7883, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7885, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7887, opcode='PUSH2', imm=Some("15b2") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7890, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7893, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7896, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=7897, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=7898, opcode='DUP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 +DEBUG azoth_core::encoder: Encoding instruction: pc=7899, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7902, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7903, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7904, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=7905, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=7906, opcode='PUSH2', imm=Some("1fc3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7909, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=7910, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7913, opcode='PUSH2', imm=Some("1326") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7916, opcode='PUSH2', imm=Some("1321") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7919, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7922, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7925, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=7926, opcode='PUSH2', imm=Some("15d5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7929, opcode='SWAP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP9' -> byte 0x98 +DEBUG azoth_core::encoder: Encoding instruction: pc=7930, opcode='PUSH2', imm=Some("132b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7933, opcode='SWAP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP8' -> byte 0x97 +DEBUG azoth_core::encoder: Encoding instruction: pc=7934, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7937, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7938, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7939, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=7940, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=7941, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7942, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=7943, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=7944, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7945, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7947, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=7948, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=7949, opcode='PUSH2', imm=Some("1faa") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7952, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=7953, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=7954, opcode='PUSH1', imm=Some("c0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7956, opcode='PUSH2', imm=Some("15fd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7959, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7962, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7965, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7968, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=7969, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=7970, opcode='PUSH2', imm=Some("1604") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7973, opcode='SWAP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP8' -> byte 0x97 +DEBUG azoth_core::encoder: Encoding instruction: pc=7974, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7977, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7978, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7979, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=7980, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=7981, opcode='PUSH2', imm=Some("1d8d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7984, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=7985, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=7986, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=7987, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=7989, opcode='PUSH2', imm=Some("161b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7992, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7995, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=7998, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8001, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=8002, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=8003, opcode='DUP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 +DEBUG azoth_core::encoder: Encoding instruction: pc=8004, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8007, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8008, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8009, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=8010, opcode='PUSH2', imm=Some("1f99") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8013, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=8014, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8017, opcode='PUSH2', imm=Some("1326") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8020, opcode='PUSH2', imm=Some("1321") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8023, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8026, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8029, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=8030, opcode='PUSH2', imm=Some("163d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8033, opcode='SWAP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP9' -> byte 0x98 +DEBUG azoth_core::encoder: Encoding instruction: pc=8034, opcode='PUSH2', imm=Some("132b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8037, opcode='SWAP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP8' -> byte 0x97 +DEBUG azoth_core::encoder: Encoding instruction: pc=8038, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8041, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8042, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8043, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8044, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8045, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=8046, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8047, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8048, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=8049, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=8050, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=8051, opcode='PUSH2', imm=Some("1f82") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8054, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=8055, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8056, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8057, opcode='PUSH2', imm=Some("14e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8060, opcode='SWAP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 +DEBUG azoth_core::encoder: Encoding instruction: pc=8061, opcode='SWAP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 +DEBUG azoth_core::encoder: Encoding instruction: pc=8062, opcode='PUSH2', imm=Some("279f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8065, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8066, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8067, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8068, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8069, opcode='PUSH2', imm=Some("1664") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8072, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8074, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8075, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=8076, opcode='DUP12', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b +DEBUG azoth_core::encoder: Encoding instruction: pc=8077, opcode='PUSH2', imm=Some("2082") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8080, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8081, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8082, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=8083, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=8084, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8085, opcode='PUSH2', imm=Some("1f6f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8088, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8089, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8090, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8091, opcode='PUSH2', imm=Some("1677") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8094, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8095, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8096, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8099, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8100, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8101, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8102, opcode='PUSH2', imm=Some("1f6c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8105, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8106, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8107, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8108, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8109, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8111, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8112, opcode='PUSH2', imm=Some("168b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8115, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8116, opcode='PUSH2', imm=Some("2082") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8119, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8120, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8121, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8122, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=8123, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8124, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=8125, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=8126, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8127, opcode='PUSH2', imm=Some("1f08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8130, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8131, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8132, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8133, opcode='PUSH2', imm=Some("16a1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8136, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8137, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8138, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8141, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8142, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8143, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=8144, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8145, opcode='PUSH2', imm=Some("1f05") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8148, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8149, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8150, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8152, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8153, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8154, opcode='PUSH2', imm=Some("1ea9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8157, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8158, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8159, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8160, opcode='PUSH1', imm=Some("80") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8162, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8164, opcode='PUSH2', imm=Some("16c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8167, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8170, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8173, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=8174, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=8175, opcode='PUSH2', imm=Some("1892") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8178, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8179, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8180, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=8181, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=8182, opcode='PUSH2', imm=Some("1ea4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8185, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8186, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8187, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=8188, opcode='PUSH2', imm=Some("2001") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8191, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=8192, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8193, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8194, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8196, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=8197, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=8201, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8203, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=8204, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=8205, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=8206, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8208, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8210, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=8211, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=8212, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=8213, opcode='PUSH1', imm=Some("18") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8215, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8217, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=8218, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=8219, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=8220, opcode='PUSH32', imm=Some("524e582a6f6e667367f4287f7ffda47fe738e2ef7d6e6cf36023f000d9fff9be") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=8253, opcode='PUSH32', imm=Some("fffcd2f5ef77ff7b7d75a6ef75766a6f6e26737ff5ffe77f9f900f3dc5f1ffff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=8286, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=8287, opcode='PUSH4', imm=Some("b499b2de") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=8292, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=8293, opcode='PUSH4', imm=Some("354b71c9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=8298, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=8299, opcode='PUSH4', imm=Some("7135c3b5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=8304, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=8305, opcode='PUSH4', imm=Some("66d71162") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=8310, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=8311, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8312, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=8313, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8315, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=8316, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=8317, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=8318, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8320, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8321, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=8322, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8323, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8324, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8325, opcode='PUSH2', imm=Some("1726") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8328, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=8329, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=8330, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=8331, opcode='PUSH2', imm=Some("1ffa") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8334, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8335, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8336, opcode='PUSH2', imm=Some("1737") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8339, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8342, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8345, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=8346, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=8347, opcode='DUP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 +DEBUG azoth_core::encoder: Encoding instruction: pc=8348, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8351, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8352, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8353, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8354, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8356, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=8357, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=8358, opcode='PUSH1', imm=Some("80") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8360, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=8361, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=8362, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=8363, opcode='PUSH2', imm=Some("20bb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8366, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=8367, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8368, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8369, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8370, opcode='PUSH2', imm=Some("14e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8373, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8374, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8375, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8378, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8379, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8380, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8381, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8382, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8383, opcode='PUSH1', imm=Some("b8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8385, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=8386, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=8387, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=8388, opcode='PUSH2', imm=Some("20e3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8391, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=8392, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8393, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8394, opcode='PUSH2', imm=Some("14e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8397, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8398, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8399, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8402, opcode='PUSH2', imm=Some("1774") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8405, opcode='PUSH2', imm=Some("132b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8408, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8409, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8412, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8413, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8414, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8415, opcode='PUSH2', imm=Some("19d7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8418, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8419, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8420, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8421, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8422, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8423, opcode='PUSH1', imm=Some("c0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8425, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=8426, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=8427, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=8428, opcode='PUSH2', imm=Some("215e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8431, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=8432, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8433, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8436, opcode='PUSH2', imm=Some("1796") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8439, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8440, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=8441, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=8442, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=8443, opcode='PUSH2', imm=Some("19c4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8446, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8447, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8448, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8449, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=8450, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=8451, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=8452, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8453, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8454, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=8455, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=8456, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=8457, opcode='PUSH2', imm=Some("2125") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8460, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=8461, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8462, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8463, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8464, opcode='PUSH2', imm=Some("14e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8467, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8468, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8469, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8472, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8475, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8476, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8479, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8480, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8481, opcode='PUSH2', imm=Some("0cfb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8484, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8485, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8486, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8487, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8488, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=8489, opcode='PUSH2', imm=Some("17cb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8492, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8494, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8495, opcode='PUSH1', imm=Some("08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8497, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=8498, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8499, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8500, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8501, opcode='PUSH2', imm=Some("17eb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8504, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8507, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8510, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8513, opcode='PUSH2', imm=Some("17e4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8516, opcode='DUP12', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b +DEBUG azoth_core::encoder: Encoding instruction: pc=8517, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8520, opcode='DUP12', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b +DEBUG azoth_core::encoder: Encoding instruction: pc=8521, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8524, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8525, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8526, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=8527, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=8528, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8531, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8532, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8533, opcode='OR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 +DEBUG azoth_core::encoder: Encoding instruction: pc=8534, opcode='SWAP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 +DEBUG azoth_core::encoder: Encoding instruction: pc=8535, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=8536, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8537, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8538, opcode='PUSH2', imm=Some("2105") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8541, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8542, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8543, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8544, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8545, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8546, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8548, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=8549, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=8550, opcode='PUSH2', imm=Some("2184") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8553, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=8554, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8555, opcode='PUSH2', imm=Some("14e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8558, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8559, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8560, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8563, opcode='PUSH2', imm=Some("1815") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8566, opcode='PUSH2', imm=Some("132b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8569, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8570, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8573, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8574, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8575, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8576, opcode='PUSH2', imm=Some("19b1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8579, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8580, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8581, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8582, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8583, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8586, opcode='PUSH2', imm=Some("1829") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8589, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8590, opcode='PUSH2', imm=Some("199e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8593, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8594, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8595, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8596, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=8597, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=8598, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=8599, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8600, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8601, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=8602, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=8603, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=8604, opcode='PUSH2', imm=Some("21b3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8607, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=8608, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8609, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8610, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8611, opcode='PUSH2', imm=Some("14e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8614, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8615, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8616, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8619, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8622, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8623, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8626, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8627, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8628, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8629, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8630, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=8631, opcode='PUSH2', imm=Some("1859") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8634, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8636, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8637, opcode='PUSH1', imm=Some("08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8639, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=8640, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8641, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8642, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8643, opcode='PUSH2', imm=Some("1872") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8646, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8649, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8652, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8655, opcode='PUSH2', imm=Some("17e4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8658, opcode='DUP12', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b +DEBUG azoth_core::encoder: Encoding instruction: pc=8659, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8662, opcode='DUP12', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b +DEBUG azoth_core::encoder: Encoding instruction: pc=8663, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8666, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8667, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8668, opcode='OR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 +DEBUG azoth_core::encoder: Encoding instruction: pc=8669, opcode='SWAP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 +DEBUG azoth_core::encoder: Encoding instruction: pc=8670, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=8671, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8672, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8673, opcode='PUSH2', imm=Some("2198") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8676, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8677, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8678, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8680, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=8681, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=8682, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8683, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8684, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8685, opcode='PUSH2', imm=Some("188d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8688, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=8689, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=8690, opcode='PUSH2', imm=Some("0d67") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8693, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8694, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8695, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8697, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=8698, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=8699, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8700, opcode='PUSH1', imm=Some("1f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8702, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=8703, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=8704, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=8705, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8707, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=8708, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=8709, opcode='CALLDATACOPY', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATACOPY' -> byte 0x37 +DEBUG azoth_core::encoder: Encoding instruction: pc=8710, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8711, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8712, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8714, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=8715, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=8716, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8717, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8718, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8719, opcode='PUSH2', imm=Some("18af") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8722, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=8723, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=8724, opcode='PUSH2', imm=Some("0d67") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8727, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8728, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8729, opcode='PUSH1', imm=Some("14") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8731, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=8732, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=8733, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8734, opcode='PUSH1', imm=Some("1f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8736, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=8737, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=8738, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=8739, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8741, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=8742, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=8743, opcode='CALLDATACOPY', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATACOPY' -> byte 0x37 +DEBUG azoth_core::encoder: Encoding instruction: pc=8744, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8745, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8746, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8747, opcode='PUSH2', imm=Some("18ca") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8750, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=8751, opcode='PUSH2', imm=Some("138f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8754, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8755, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8756, opcode='PUSH2', imm=Some("18d7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8759, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8761, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=8762, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8763, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=8764, opcode='PUSH2', imm=Some("0d67") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8767, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8768, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8769, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=8770, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=8771, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=8772, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=8773, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8774, opcode='PUSH2', imm=Some("18e8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8777, opcode='PUSH1', imm=Some("1f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8779, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=8780, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8781, opcode='PUSH2', imm=Some("138f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8784, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8785, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8786, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=8787, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8788, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8790, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=8791, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8792, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=8793, opcode='CALLDATACOPY', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATACOPY' -> byte 0x37 +DEBUG azoth_core::encoder: Encoding instruction: pc=8794, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8795, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8796, opcode='PUSH2', imm=Some("18fd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8799, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=8800, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=8801, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=8802, opcode='PUSH2', imm=Some("1ffa") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8805, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8806, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8807, opcode='PUSH2', imm=Some("190e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8810, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8813, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8816, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=8817, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=8818, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=8819, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8822, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8823, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8824, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8825, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8827, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=8828, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=8829, opcode='PUSH1', imm=Some("80") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8831, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=8832, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=8833, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=8834, opcode='PUSH2', imm=Some("22b1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8837, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=8838, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8839, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8840, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8841, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8842, opcode='PUSH2', imm=Some("1928") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8845, opcode='PUSH2', imm=Some("21e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8848, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8849, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8850, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8851, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8853, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=8854, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8856, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8858, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8860, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=8861, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=8862, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=8863, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=8864, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=8865, opcode='BYTE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a +DEBUG azoth_core::encoder: Encoding instruction: pc=8866, opcode='PUSH2', imm=Some("1941") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8869, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=8870, opcode='PUSH2', imm=Some("19fb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8873, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8874, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8875, opcode='MSTORE8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 +DEBUG azoth_core::encoder: Encoding instruction: pc=8876, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8877, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8879, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8880, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8881, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8882, opcode='PUSH1', imm=Some("b8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8884, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=8885, opcode='SWAP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 +DEBUG azoth_core::encoder: Encoding instruction: pc=8886, opcode='SWAP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 +DEBUG azoth_core::encoder: Encoding instruction: pc=8887, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=8888, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=8889, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=8890, opcode='SWAP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 +DEBUG azoth_core::encoder: Encoding instruction: pc=8891, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=8892, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=8893, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=8894, opcode='PUSH2', imm=Some("231f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8897, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=8898, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8899, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8902, opcode='PUSH2', imm=Some("1965") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8905, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8906, opcode='PUSH2', imm=Some("19d7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8909, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8910, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8911, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=8912, opcode='PUSH2', imm=Some("196f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8915, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=8916, opcode='PUSH2', imm=Some("2229") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8919, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8920, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8921, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=8922, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=8923, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8924, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=8925, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=8926, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=8927, opcode='PUSH2', imm=Some("22ef") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8930, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=8931, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8932, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8933, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8934, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=8935, opcode='PUSH2', imm=Some("14e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8938, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=8939, opcode='PUSH2', imm=Some("0ced") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8942, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8943, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8944, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=8945, opcode='PUSH2', imm=Some("19a3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8948, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8951, opcode='PUSH2', imm=Some("199c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8954, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8956, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=8957, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8960, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=8961, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8964, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8965, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8966, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=8967, opcode='DUP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 +DEBUG azoth_core::encoder: Encoding instruction: pc=8968, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8971, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8972, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8973, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=8974, opcode='BYTE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a +DEBUG azoth_core::encoder: Encoding instruction: pc=8975, opcode='PUSH2', imm=Some("19af") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8978, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=8979, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=8980, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8983, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8984, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8985, opcode='MSTORE8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 +DEBUG azoth_core::encoder: Encoding instruction: pc=8986, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=8987, opcode='PUSH2', imm=Some("22db") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8990, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=8991, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=8992, opcode='PUSH1', imm=Some("c0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=8994, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=8995, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=8996, opcode='PUSH2', imm=Some("23c0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=8999, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=9000, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9003, opcode='PUSH2', imm=Some("19ca") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9006, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=9007, opcode='PUSH2', imm=Some("19c4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9010, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9011, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9012, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9013, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=9014, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=9015, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=9016, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9017, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=9018, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=9019, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=9020, opcode='PUSH2', imm=Some("2391") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9023, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=9024, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9025, opcode='PUSH2', imm=Some("19e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9028, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=9029, opcode='PUSH2', imm=Some("2229") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9032, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9033, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9034, opcode='SWAP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 +DEBUG azoth_core::encoder: Encoding instruction: pc=9035, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=9036, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9037, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=9038, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=9039, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=9040, opcode='PUSH2', imm=Some("2364") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9043, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=9044, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9045, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9046, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9047, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9048, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9049, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9052, opcode='PUSH2', imm=Some("14e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9055, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=9056, opcode='PUSH2', imm=Some("0ced") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9059, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9060, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9061, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=9062, opcode='PUSH2', imm=Some("1a15") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9065, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9068, opcode='PUSH2', imm=Some("199c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9071, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9073, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=9074, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9077, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=9078, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9081, opcode='DUP12', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b +DEBUG azoth_core::encoder: Encoding instruction: pc=9082, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9085, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9086, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9087, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=9088, opcode='BYTE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a +DEBUG azoth_core::encoder: Encoding instruction: pc=9089, opcode='PUSH2', imm=Some("1a21") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9092, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=9093, opcode='DUP12', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b +DEBUG azoth_core::encoder: Encoding instruction: pc=9094, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9097, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9098, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9099, opcode='MSTORE8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 +DEBUG azoth_core::encoder: Encoding instruction: pc=9100, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9101, opcode='PUSH2', imm=Some("234c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9104, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9105, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9106, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=9107, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9109, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9110, opcode='PUSH1', imm=Some("08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9112, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=9113, opcode='PUSH2', imm=Some("1a4f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9116, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9119, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9122, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9125, opcode='PUSH2', imm=Some("1a48") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9128, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=9129, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9132, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=9133, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9136, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9137, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9138, opcode='DUP13', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP13' -> byte 0x8c +DEBUG azoth_core::encoder: Encoding instruction: pc=9139, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=9140, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9143, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9144, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9145, opcode='OR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 +DEBUG azoth_core::encoder: Encoding instruction: pc=9146, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=9147, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9148, opcode='PUSH2', imm=Some("2338") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9151, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9152, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9153, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9155, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=9156, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=9160, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9162, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=9163, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=9164, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=9165, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9167, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9169, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=9170, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9171, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=9172, opcode='PUSH1', imm=Some("1e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9174, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9176, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=9177, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9178, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=9179, opcode='PUSH32', imm=Some("85ad1ce7eaa2a4c842d0f1e3a77427a6668ecf70c0583e0e686f401f2f772194") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=9212, opcode='PUSH8', imm=Some("ed7eb3f2b09df3d2") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=9221, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9222, opcode='PUSH8', imm=Some("b177bfc56f5f1ab2") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=9231, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9232, opcode='PUSH8', imm=Some("de8d6f9632d53169") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=9241, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9242, opcode='PUSH8', imm=Some("058c3e0af46fb0d5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=9251, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9252, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9253, opcode='PUSH4', imm=Some("efb71aa3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=9258, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9259, opcode='PUSH4', imm=Some("282f7b45") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=9264, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9265, opcode='PUSH4', imm=Some("20b0147e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=9270, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9271, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9272, opcode='PUSH8', imm=Some("f372fbd4ed26d8fa") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=9281, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=9282, opcode='PUSH8', imm=Some("157c9ff88b636fae") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=9291, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=9292, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9293, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=9294, opcode='PUSH8', imm=Some("55312f57fd49bd0d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=9303, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9304, opcode='PUSH8', imm=Some("871f88fb91284ef2") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=9313, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9314, opcode='PUSH8', imm=Some("41e35209c57106a5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=9323, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=9324, opcode='PUSH8', imm=Some("24c669140ef94f08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=9333, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=9334, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9335, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=9336, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9338, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=9339, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9340, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=9341, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9343, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9344, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=9345, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9346, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=9347, opcode='PUSH2', imm=Some("2488") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9350, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=9351, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9352, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9353, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9355, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=9356, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=9360, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9362, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=9363, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=9364, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=9365, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9367, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9369, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=9370, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9371, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=9372, opcode='PUSH1', imm=Some("21") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9374, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9376, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=9377, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9378, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=9379, opcode='PUSH32', imm=Some("17ca7ec893e3373c833fb1a5b5b8797eb15209d50d3728b9d94daefc2eb56fdd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=9412, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9414, opcode='PUSH2', imm=Some("3356") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9417, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9419, opcode='CODECOPY', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 +DEBUG azoth_core::encoder: Encoding instruction: pc=9420, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9422, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=9423, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9424, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9426, opcode='PUSH2', imm=Some("3376") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9429, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9431, opcode='CODECOPY', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 +DEBUG azoth_core::encoder: Encoding instruction: pc=9432, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9434, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=9435, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9436, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=9437, opcode='PUSH32', imm=Some("d7f978f7e777fd7f2d7ffd5d35fcfbf7777a7f7ff76cf2fbfff6ffc2ec3df9b2") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=9470, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=9471, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9473, opcode='PUSH2', imm=Some("3396") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9476, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9478, opcode='CODECOPY', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 +DEBUG azoth_core::encoder: Encoding instruction: pc=9479, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9481, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=9482, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=9483, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9485, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=9486, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9487, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=9488, opcode='PUSH1', imm=Some("73") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9490, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9492, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=9493, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9495, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=9496, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9497, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=9498, opcode='PUSH1', imm=Some("84") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9500, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9501, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=9502, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9503, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=9504, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=9505, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9506, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=9507, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=9508, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9509, opcode='PUSH2', imm=Some("1b1e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9512, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9514, opcode='PUSH1', imm=Some("fe") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9516, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=9517, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9519, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9521, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9523, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=9524, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=9525, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=9526, opcode='PUSH2', imm=Some("1b16") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9529, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9532, opcode='DUP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 +DEBUG azoth_core::encoder: Encoding instruction: pc=9533, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=9534, opcode='PUSH2', imm=Some("1892") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9537, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9538, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9539, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=9540, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=9541, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=9542, opcode='PUSH2', imm=Some("2481") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9545, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9546, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9547, opcode='PUSH1', imm=Some("1f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9549, opcode='PUSH1', imm=Some("fb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9551, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=9552, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9554, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9556, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9558, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=9559, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=9560, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=9561, opcode='PUSH2', imm=Some("1b39") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9564, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9567, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=9568, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=9569, opcode='PUSH2', imm=Some("1892") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9572, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9573, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9574, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=9575, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=9576, opcode='PUSH2', imm=Some("26b6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9579, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=9580, opcode='PUSH2', imm=Some("1b5d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9583, opcode='PUSH2', imm=Some("1b58") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9586, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9589, opcode='PUSH2', imm=Some("1321") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9592, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9595, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9598, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=9599, opcode='DUP12', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b +DEBUG azoth_core::encoder: Encoding instruction: pc=9600, opcode='PUSH2', imm=Some("1892") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9603, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9604, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9605, opcode='PUSH2', imm=Some("0ced") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9608, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9609, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9610, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=9611, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=9612, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9613, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9614, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=9615, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=9616, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9617, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=9618, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=9619, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=9620, opcode='PUSH2', imm=Some("25a2") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9623, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=9624, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9625, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9626, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9627, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9628, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9629, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9630, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9631, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=9632, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9633, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9634, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9635, opcode='PUSH2', imm=Some("1b94") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9638, opcode='PUSH2', imm=Some("1b8d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9641, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=9642, opcode='PUSH2', imm=Some("1b88") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9645, opcode='CALLDATASIZE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 +DEBUG azoth_core::encoder: Encoding instruction: pc=9646, opcode='DUP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 +DEBUG azoth_core::encoder: Encoding instruction: pc=9647, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=9648, opcode='PUSH2', imm=Some("13ab") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9651, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9652, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9653, opcode='PUSH2', imm=Some("2854") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9656, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9657, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9658, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9659, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=9660, opcode='PUSH2', imm=Some("0cfb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9663, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9664, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9665, opcode='SWAP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 +DEBUG azoth_core::encoder: Encoding instruction: pc=9666, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=9667, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=9668, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9670, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=9671, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9672, opcode='KECCAK256', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'KECCAK256' -> byte 0x20 +DEBUG azoth_core::encoder: Encoding instruction: pc=9673, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=9674, opcode='PUSH2', imm=Some("2654") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9677, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=9678, opcode='PUSH1', imm=Some("03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9680, opcode='PUSH1', imm=Some("fe") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9682, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=9683, opcode='PUSH2', imm=Some("1bc2") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9686, opcode='PUSH2', imm=Some("1bb5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9689, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9692, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=9693, opcode='PUSH2', imm=Some("19fb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9696, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9697, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9698, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9700, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9702, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9704, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=9705, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=9706, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=9707, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=9708, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9709, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9710, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9711, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=9712, opcode='PUSH2', imm=Some("2654") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9715, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=9716, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=9717, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9718, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=9719, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9721, opcode='PUSH1', imm=Some("1f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9723, opcode='PUSH1', imm=Some("fb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9725, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=9726, opcode='PUSH2', imm=Some("1be0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9729, opcode='PUSH2', imm=Some("1bb5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9732, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9735, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=9736, opcode='PUSH2', imm=Some("19fb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9739, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9740, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9741, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=9742, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=9743, opcode='PUSH2', imm=Some("2698") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9746, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=9747, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9748, opcode='PUSH2', imm=Some("1bf1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9751, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=9752, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=9753, opcode='PUSH2', imm=Some("29de") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9756, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9757, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9758, opcode='PUSH1', imm=Some("11") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9760, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=9761, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=9762, opcode='PUSH2', imm=Some("265f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9765, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=9766, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9767, opcode='PUSH2', imm=Some("1c03") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9770, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=9771, opcode='PUSH2', imm=Some("2b70") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9774, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9775, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9776, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=9777, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=9778, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=9779, opcode='PUSH2', imm=Some("2654") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9782, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=9783, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=9784, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=9785, opcode='PUSH2', imm=Some("2648") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9788, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=9789, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=9790, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=9791, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9792, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=9793, opcode='SWAP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 +DEBUG azoth_core::encoder: Encoding instruction: pc=9794, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9795, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=9796, opcode='PUSH2', imm=Some("2590") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9799, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9800, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9801, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9802, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9803, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9804, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9805, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9806, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9807, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9808, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9810, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9811, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9812, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9813, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9814, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9815, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9816, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9817, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9818, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9819, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9820, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=9821, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9822, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9823, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9824, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9825, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=9826, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9827, opcode='PUSH1', imm=Some("02") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9829, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=9830, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=9831, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9832, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9833, opcode='PUSH2', imm=Some("268c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9836, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=9837, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=9838, opcode='DUP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 +DEBUG azoth_core::encoder: Encoding instruction: pc=9839, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=9840, opcode='PUSH2', imm=Some("1c4c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9843, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=9844, opcode='PUSH2', imm=Some("2a2a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9847, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9848, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9849, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=9850, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=9851, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=9852, opcode='PUSH2', imm=Some("2654") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9855, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=9856, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=9857, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=9858, opcode='PUSH2', imm=Some("2648") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9861, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=9862, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=9863, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=9864, opcode='PUSH2', imm=Some("263f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9867, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9868, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9869, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9870, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9871, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9872, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9873, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9874, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9875, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9876, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9877, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=9878, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9879, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9880, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9881, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=9882, opcode='PUSH2', imm=Some("1c85") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9885, opcode='PUSH2', imm=Some("1b58") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9888, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9891, opcode='PUSH2', imm=Some("1321") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9894, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9897, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9900, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=9901, opcode='PUSH2', imm=Some("19fb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9904, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9905, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9906, opcode='PUSH2', imm=Some("2613") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9909, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9910, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9911, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9913, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=9914, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=9915, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9916, opcode='PUSH2', imm=Some("258d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9919, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9920, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9921, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=9922, opcode='PUSH2', imm=Some("26c7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=9925, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=9926, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=9927, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=9928, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9930, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=9931, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=9935, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9937, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=9938, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=9939, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=9940, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9942, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9944, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=9945, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9946, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=9947, opcode='PUSH1', imm=Some("0f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9949, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9951, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=9952, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9953, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=9954, opcode='PUSH15', imm=Some("f3a78face89c5563a9c9bf82fc8cf2") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH15' -> byte 0x6e +DEBUG azoth_core::encoder: Added 15 immediate bytes for PUSH15 +DEBUG azoth_core::encoder: Encoding instruction: pc=9970, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9971, opcode='PUSH15', imm=Some("10ef57b92e2a40de5cfd36ef0897d3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH15' -> byte 0x6e +DEBUG azoth_core::encoder: Added 15 immediate bytes for PUSH15 +DEBUG azoth_core::encoder: Encoding instruction: pc=9987, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9988, opcode='PUSH1', imm=Some("8c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9990, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=9991, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9993, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=9994, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=9995, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=9996, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=9998, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=9999, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=10000, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10001, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=10002, opcode='PUSH2', imm=Some("2717") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10005, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=10006, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10007, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10008, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10010, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=10011, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=10015, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10017, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=10018, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=10019, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=10020, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10022, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10024, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=10025, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=10026, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=10027, opcode='PUSH1', imm=Some("1e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10029, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10031, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=10032, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=10033, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=10034, opcode='PUSH32', imm=Some("d50398ec946c62144a50fd022f9a507742bef4a1575c99bd837c0c164141fa99") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=10067, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10069, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=10070, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=10071, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=10072, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10074, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10075, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=10076, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10077, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=10078, opcode='PUSH2', imm=Some("2763") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10081, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=10082, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10083, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10084, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10086, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=10087, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=10091, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10093, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=10094, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=10095, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=10096, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10098, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10100, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=10101, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=10102, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=10103, opcode='PUSH1', imm=Some("14") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10105, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10107, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=10108, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=10109, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=10110, opcode='PUSH20', imm=Some("15dc9bdb99c81d1bdad95b8818dbdb9d1c9858dd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH20' -> byte 0x73 +DEBUG azoth_core::encoder: Added 20 immediate bytes for PUSH20 +DEBUG azoth_core::encoder: Encoding instruction: pc=10131, opcode='PUSH1', imm=Some("62") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10133, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=10134, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10136, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=10137, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=10138, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=10139, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10141, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10142, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=10143, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10144, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10145, opcode='PUSH1', imm=Some("14") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10147, opcode='PUSH2', imm=Some("14e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10150, opcode='SWAP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 +DEBUG azoth_core::encoder: Encoding instruction: pc=10151, opcode='SWAP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 +DEBUG azoth_core::encoder: Encoding instruction: pc=10152, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=10153, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10156, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=10157, opcode='PUSH2', imm=Some("1dfd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10160, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=10161, opcode='DUP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 +DEBUG azoth_core::encoder: Encoding instruction: pc=10162, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=10163, opcode='PUSH2', imm=Some("1d94") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10166, opcode='PUSH1', imm=Some("c0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10168, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10170, opcode='PUSH2', imm=Some("1d8c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10173, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10176, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10179, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=10180, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=10181, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=10182, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10185, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10186, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10187, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=10188, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=10189, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=10190, opcode='PUSH2', imm=Some("26c0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10193, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10194, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10195, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10197, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10199, opcode='PUSH2', imm=Some("1da9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10202, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10205, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10208, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=10209, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=10210, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=10211, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10214, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10215, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10216, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=10217, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=10218, opcode='PUSH2', imm=Some("2841") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10221, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=10222, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10223, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10226, opcode='PUSH2', imm=Some("1326") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10229, opcode='PUSH2', imm=Some("1321") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10232, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10235, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10238, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=10239, opcode='PUSH2', imm=Some("1dcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10242, opcode='SWAP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP9' -> byte 0x98 +DEBUG azoth_core::encoder: Encoding instruction: pc=10243, opcode='PUSH2', imm=Some("132b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10246, opcode='SWAP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP8' -> byte 0x97 +DEBUG azoth_core::encoder: Encoding instruction: pc=10247, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10250, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10251, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10252, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10253, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10254, opcode='PUSH2', imm=Some("1dda") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10257, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=10258, opcode='DUP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 +DEBUG azoth_core::encoder: Encoding instruction: pc=10259, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=10260, opcode='PUSH2', imm=Some("2c85") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10263, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10264, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10265, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=10266, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10267, opcode='PUSH2', imm=Some("1de8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10270, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=10271, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=10272, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=10273, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=10274, opcode='PUSH2', imm=Some("2710") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10277, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10278, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10279, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=10280, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=10281, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10283, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10285, opcode='PUSH1', imm=Some("a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10287, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=10288, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=10289, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10290, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=10291, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=10292, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10293, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=10294, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=10295, opcode='PUSH2', imm=Some("275c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10298, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10299, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10300, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10301, opcode='PUSH2', imm=Some("2fe1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10304, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10305, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10306, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10307, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10308, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10309, opcode='PUSH2', imm=Some("1e10") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10312, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10313, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10314, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10317, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10318, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10319, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10320, opcode='PUSH2', imm=Some("280d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10323, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10324, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10325, opcode='PUSH2', imm=Some("1e22") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10328, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=10329, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=10330, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=10331, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=10332, opcode='PUSH2', imm=Some("1ffa") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10335, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10336, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10337, opcode='PUSH2', imm=Some("1e32") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10340, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10343, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10346, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=10347, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=10348, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10351, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10352, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10353, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10354, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10356, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=10357, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=10358, opcode='PUSH1', imm=Some("80") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10360, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=10361, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=10362, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=10363, opcode='PUSH2', imm=Some("2889") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10366, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=10367, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10368, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10369, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10370, opcode='PUSH2', imm=Some("1928") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10373, opcode='PUSH2', imm=Some("21e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10376, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10377, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10378, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10379, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=10380, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=10381, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10382, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10383, opcode='PUSH1', imm=Some("b8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10385, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=10386, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=10387, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=10388, opcode='PUSH2', imm=Some("28f3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10391, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=10392, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10393, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10396, opcode='PUSH2', imm=Some("1e66") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10399, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10400, opcode='PUSH2', imm=Some("19d7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10403, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10404, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10405, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10406, opcode='PUSH2', imm=Some("1e70") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10409, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=10410, opcode='PUSH2', imm=Some("2229") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10413, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10414, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10415, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=10416, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=10417, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10418, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=10419, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=10420, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=10421, opcode='PUSH2', imm=Some("28c4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10424, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=10425, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10426, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10427, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10428, opcode='PUSH2', imm=Some("14e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10431, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10432, opcode='PUSH2', imm=Some("0ced") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10435, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10436, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10437, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=10438, opcode='PUSH2', imm=Some("1ea2") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10441, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10444, opcode='PUSH2', imm=Some("1e9c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10447, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10449, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=10450, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10453, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=10454, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10457, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10458, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10459, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=10460, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10463, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10464, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10465, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=10466, opcode='BYTE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a +DEBUG azoth_core::encoder: Encoding instruction: pc=10467, opcode='PUSH2', imm=Some("1eae") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10470, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=10471, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=10472, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10475, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10476, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10477, opcode='MSTORE8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 +DEBUG azoth_core::encoder: Encoding instruction: pc=10478, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=10479, opcode='PUSH2', imm=Some("28b1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10482, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10483, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10484, opcode='PUSH1', imm=Some("c0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10486, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=10487, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=10488, opcode='PUSH2', imm=Some("2991") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10491, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=10492, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10495, opcode='PUSH2', imm=Some("1ec9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10498, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10499, opcode='PUSH2', imm=Some("19c4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10502, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10503, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10504, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=10505, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10506, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=10507, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10508, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=10509, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=10510, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=10511, opcode='PUSH2', imm=Some("2963") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10514, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=10515, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10516, opcode='PUSH2', imm=Some("1ede") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10519, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=10520, opcode='PUSH2', imm=Some("2229") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10523, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10524, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10525, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=10526, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=10527, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10528, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=10529, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=10530, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=10531, opcode='PUSH2', imm=Some("2936") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10534, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=10535, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10536, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10537, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10538, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10539, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10542, opcode='PUSH2', imm=Some("14e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10545, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=10546, opcode='PUSH2', imm=Some("0ced") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10549, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10550, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10551, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=10552, opcode='PUSH2', imm=Some("1f12") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10555, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10558, opcode='PUSH2', imm=Some("1e9c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10561, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10563, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=10564, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10567, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=10568, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10571, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=10572, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10575, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10576, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10577, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=10578, opcode='BYTE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a +DEBUG azoth_core::encoder: Encoding instruction: pc=10579, opcode='PUSH2', imm=Some("1f1e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10582, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=10583, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=10584, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10587, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10588, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10589, opcode='MSTORE8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 +DEBUG azoth_core::encoder: Encoding instruction: pc=10590, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=10591, opcode='PUSH2', imm=Some("291f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10594, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10595, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10596, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=10597, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10599, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10600, opcode='PUSH1', imm=Some("08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10602, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=10603, opcode='PUSH2', imm=Some("1f4b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10606, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10609, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10612, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10615, opcode='PUSH2', imm=Some("1f45") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10618, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=10619, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10622, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=10623, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10626, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10627, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10628, opcode='DUP12', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b +DEBUG azoth_core::encoder: Encoding instruction: pc=10629, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10632, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10633, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10634, opcode='OR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 +DEBUG azoth_core::encoder: Encoding instruction: pc=10635, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=10636, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=10637, opcode='PUSH2', imm=Some("290b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10640, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10641, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10642, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10643, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10644, opcode='PUSH2', imm=Some("1f5f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10647, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=10648, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=10649, opcode='PUSH2', imm=Some("3139") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10652, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10653, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10654, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=10655, opcode='PUSH2', imm=Some("1f69") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10658, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=10659, opcode='PUSH2', imm=Some("2229") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10662, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10663, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10664, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10665, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=10666, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10667, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=10668, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=10669, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=10670, opcode='PUSH2', imm=Some("29b8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10673, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=10674, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10675, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10676, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10677, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10678, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10679, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10680, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10681, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=10682, opcode='PUSH2', imm=Some("1f8d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10685, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10688, opcode='PUSH2', imm=Some("1e9c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10691, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10693, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=10694, opcode='DUP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 +DEBUG azoth_core::encoder: Encoding instruction: pc=10695, opcode='PUSH2', imm=Some("0cfb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10698, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10699, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10700, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=10701, opcode='BYTE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a +DEBUG azoth_core::encoder: Encoding instruction: pc=10702, opcode='PUSH2', imm=Some("1f99") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10705, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=10706, opcode='DUP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 +DEBUG azoth_core::encoder: Encoding instruction: pc=10707, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10710, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10711, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10712, opcode='MSTORE8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 +DEBUG azoth_core::encoder: Encoding instruction: pc=10713, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=10714, opcode='PUSH2', imm=Some("29aa") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10717, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10718, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10719, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=10720, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10721, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10722, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=10723, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=10724, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=10725, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=10726, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=10727, opcode='PUSH2', imm=Some("2a0f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10730, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=10731, opcode='PUSH2', imm=Some("1fb6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10734, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=10735, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=10736, opcode='PUSH2', imm=Some("3139") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10739, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10740, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10741, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=10742, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=10743, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=10744, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10745, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=10746, opcode='PUSH2', imm=Some("0cda") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10749, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=10750, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10751, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=10752, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=10753, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=10754, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=10755, opcode='PUSH2', imm=Some("0cda") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10758, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=10759, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10761, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=10762, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10763, opcode='PUSH2', imm=Some("29e1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10766, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10767, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10768, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10769, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10770, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10771, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10772, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10773, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10774, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=10775, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10777, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=10778, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10779, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=10780, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=10781, opcode='DIV', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DIV' -> byte 0x04 +DEBUG azoth_core::encoder: Encoding instruction: pc=10782, opcode='PUSH1', imm=Some("02") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10784, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=10785, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10786, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=10787, opcode='OR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 +DEBUG azoth_core::encoder: Encoding instruction: pc=10788, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=10789, opcode='PUSH2', imm=Some("0cda") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10792, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=10793, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10794, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10795, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=10796, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=10797, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=10798, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10799, opcode='PUSH2', imm=Some("1ffa") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10802, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=10803, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=10804, opcode='PUSH2', imm=Some("2854") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10807, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10808, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10809, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=10810, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10811, opcode='PUSH2', imm=Some("2019") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10814, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10816, opcode='PUSH2', imm=Some("2010") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10819, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10822, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10825, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=10826, opcode='PUSH2', imm=Some("19fb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10829, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10830, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10831, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=10832, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=10833, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=10834, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10835, opcode='PUSH2', imm=Some("3269") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10838, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10839, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10840, opcode='SWAP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP8' -> byte 0x97 +DEBUG azoth_core::encoder: Encoding instruction: pc=10841, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=10842, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10843, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=10844, opcode='PUSH2', imm=Some("2af9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10847, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=10848, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10849, opcode='PUSH2', imm=Some("202d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10852, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10853, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=10854, opcode='DUP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 +DEBUG azoth_core::encoder: Encoding instruction: pc=10855, opcode='PUSH2', imm=Some("0cfb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10858, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10859, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10860, opcode='PUSH2', imm=Some("2037") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10863, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=10864, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=10865, opcode='PUSH2', imm=Some("2a14") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10868, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10869, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10870, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=10871, opcode='PUSH2', imm=Some("2a8a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10874, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=10875, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10876, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10877, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10878, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10879, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10880, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10881, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10882, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10883, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=10884, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10885, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=10886, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10887, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=10888, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10889, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10890, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10891, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=10892, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=10893, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10895, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=10896, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=10897, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=10898, opcode='PUSH2', imm=Some("2ae7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10901, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=10902, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10903, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10904, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10905, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10906, opcode='PUSH2', imm=Some("2aa4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10909, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=10910, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10911, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=10912, opcode='PUSH2', imm=Some("2a7b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10915, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10916, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10917, opcode='PUSH2', imm=Some("2079") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10920, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=10921, opcode='PUSH2', imm=Some("2073") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10924, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10925, opcode='PUSH2', imm=Some("0cfb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10928, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10929, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10930, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10931, opcode='PUSH2', imm=Some("2854") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10934, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10935, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10936, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10937, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10939, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=10940, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=10941, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10942, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=10943, opcode='KECCAK256', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'KECCAK256' -> byte 0x20 +DEBUG azoth_core::encoder: Encoding instruction: pc=10944, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10945, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10947, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=10948, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=10949, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10950, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=10951, opcode='KECCAK256', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'KECCAK256' -> byte 0x20 +DEBUG azoth_core::encoder: Encoding instruction: pc=10952, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=10953, opcode='PUSH2', imm=Some("2ad5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10956, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=10957, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=10958, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=10959, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=10960, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=10961, opcode='PUSH2', imm=Some("2a9e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10964, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10965, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10966, opcode='PUSH2', imm=Some("20a2") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10969, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10970, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=10971, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10972, opcode='PUSH2', imm=Some("0cfb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10975, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10976, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10977, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=10979, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=10980, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=10981, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=10982, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10983, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10984, opcode='PUSH2', imm=Some("20b3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10987, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=10988, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=10989, opcode='PUSH2', imm=Some("33cf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=10992, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=10993, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=10994, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=10995, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=10996, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=10997, opcode='PUSH2', imm=Some("2a96") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11000, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11001, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11002, opcode='PUSH2', imm=Some("20cc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11005, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=11006, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=11007, opcode='SWAP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 +DEBUG azoth_core::encoder: Encoding instruction: pc=11008, opcode='SWAP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 +DEBUG azoth_core::encoder: Encoding instruction: pc=11009, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11010, opcode='PUSH2', imm=Some("049e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11013, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=11014, opcode='PUSH2', imm=Some("33cf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11017, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11018, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11019, opcode='PUSH2', imm=Some("2b63") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11022, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=11023, opcode='PUSH2', imm=Some("20dd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11026, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=11027, opcode='PUSH2', imm=Some("2073") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11030, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=11031, opcode='PUSH2', imm=Some("0cfb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11034, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11035, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11036, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11037, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11038, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=11039, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=11040, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11042, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=11043, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=11044, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=11045, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=11046, opcode='PUSH2', imm=Some("2b43") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11049, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=11050, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11051, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11053, opcode='PUSH2', imm=Some("20fd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11056, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=11057, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11058, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=11059, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=11060, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11061, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=11062, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11063, opcode='PUSH2', imm=Some("0cfb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11066, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11067, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11068, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=11069, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11071, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=11072, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=11073, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11074, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11075, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11076, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=11077, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=11078, opcode='PUSH2', imm=Some("2b57") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11081, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=11082, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11084, opcode='PUSH2', imm=Some("20fd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11087, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=11088, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11089, opcode='KECCAK256', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'KECCAK256' -> byte 0x20 +DEBUG azoth_core::encoder: Encoding instruction: pc=11090, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=11091, opcode='PUSH2', imm=Some("2b34") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11094, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11095, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11096, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11097, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11098, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11099, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11100, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=11101, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11102, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=11103, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11104, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=11105, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11106, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11107, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11108, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11109, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11110, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11111, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11112, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11113, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=11114, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11115, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=11116, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11117, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=11118, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11119, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11120, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11121, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=11122, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11123, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=11124, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=11125, opcode='PUSH2', imm=Some("2140") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11128, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=11129, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=11130, opcode='PUSH2', imm=Some("2a14") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11133, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11134, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11135, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=11136, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=11137, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=11138, opcode='PUSH2', imm=Some("2c28") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11141, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=11142, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11143, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11146, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11149, opcode='PUSH2', imm=Some("2162") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11152, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=11153, opcode='PUSH2', imm=Some("215c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11156, opcode='DUP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 +DEBUG azoth_core::encoder: Encoding instruction: pc=11157, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11159, opcode='SHR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c +DEBUG azoth_core::encoder: Encoding instruction: pc=11160, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11161, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11162, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11163, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11164, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11167, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11168, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11169, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11171, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=11172, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=11173, opcode='PUSH2', imm=Some("2c1f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11176, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=11177, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11179, opcode='SHR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c +DEBUG azoth_core::encoder: Encoding instruction: pc=11180, opcode='PUSH1', imm=Some("0f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11182, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=11183, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=11184, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11185, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11186, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=11187, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=11188, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11189, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11191, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=11192, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=11193, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=11194, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=11195, opcode='PUSH2', imm=Some("2bff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11198, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=11199, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11200, opcode='PUSH2', imm=Some("218b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11203, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=11204, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11205, opcode='PUSH2', imm=Some("2854") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11208, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11209, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11210, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11211, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=11212, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=11213, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=11214, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=11215, opcode='PUSH2', imm=Some("2bf4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11218, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=11219, opcode='PUSH2', imm=Some("20fd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11222, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=11223, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11225, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=11226, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=11227, opcode='PUSH2', imm=Some("2bea") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11230, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=11231, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11233, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=11234, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11235, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11236, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=11237, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=11238, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11241, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11242, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11243, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11245, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11246, opcode='KECCAK256', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'KECCAK256' -> byte 0x20 +DEBUG azoth_core::encoder: Encoding instruction: pc=11247, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=11248, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11251, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11252, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11253, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11254, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11255, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11256, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=11257, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11258, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=11259, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11260, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=11261, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11262, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11263, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11264, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11265, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=11266, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11268, opcode='PUSH2', imm=Some("21d5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11271, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=11272, opcode='PUSH2', imm=Some("132b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11275, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11277, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=11278, opcode='DUP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 +DEBUG azoth_core::encoder: Encoding instruction: pc=11279, opcode='PUSH2', imm=Some("3139") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11282, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11283, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11284, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=11285, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11286, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=11287, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=11288, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=11289, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11290, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11291, opcode='PUSH2', imm=Some("2bb4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11294, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11295, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11296, opcode='PUSH1', imm=Some("0f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11298, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=11299, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=11300, opcode='PUSH2', imm=Some("2bb0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11303, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11304, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11305, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=11306, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11307, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11308, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=11309, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=11310, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=11311, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=11312, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=11313, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11314, opcode='PUSH1', imm=Some("10") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11316, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=11317, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=11318, opcode='PUSH2', imm=Some("2c6b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11321, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=11322, opcode='PUSH2', imm=Some("2205") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11325, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=11326, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11327, opcode='PUSH2', imm=Some("2854") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11330, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11331, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11332, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11333, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11335, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=11336, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=11337, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=11338, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11339, opcode='KECCAK256', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'KECCAK256' -> byte 0x20 +DEBUG azoth_core::encoder: Encoding instruction: pc=11340, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11341, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11343, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=11344, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=11345, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=11346, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11347, opcode='KECCAK256', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'KECCAK256' -> byte 0x20 +DEBUG azoth_core::encoder: Encoding instruction: pc=11348, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=11349, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=11350, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=11351, opcode='PUSH2', imm=Some("2c62") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11354, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=11355, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11357, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=11358, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11359, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=11360, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11361, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11362, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11363, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=11364, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=11365, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11366, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=11367, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11368, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=11369, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11370, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11371, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11372, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11373, opcode='PUSH2', imm=Some("223e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11376, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=11377, opcode='PUSH2', imm=Some("132b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11380, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11382, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=11383, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=11384, opcode='PUSH2', imm=Some("3139") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11387, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11388, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11389, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=11390, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11391, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=11392, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11393, opcode='PUSH2', imm=Some("2c31") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11396, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11397, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11398, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=11399, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11400, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=11401, opcode='PUSH2', imm=Some("2255") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11404, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=11405, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=11406, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=11407, opcode='PUSH2', imm=Some("1ffa") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11410, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11411, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11412, opcode='PUSH1', imm=Some("94") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11414, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11416, opcode='PUSH2', imm=Some("226a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11419, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11422, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11425, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=11426, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=11427, opcode='DUP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 +DEBUG azoth_core::encoder: Encoding instruction: pc=11428, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11431, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11432, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11433, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=11434, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=11435, opcode='PUSH2', imm=Some("2cf4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11438, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=11439, opcode='PUSH2', imm=Some("2278") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11442, opcode='PUSH2', imm=Some("2207") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11445, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11446, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11447, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=11448, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=11449, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11450, opcode='PUSH1', imm=Some("14") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11452, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=11453, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=11454, opcode='PUSH2', imm=Some("2ccb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11457, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=11458, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11459, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11460, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11461, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=11462, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11463, opcode='PUSH1', imm=Some("15") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11465, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11466, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11467, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11468, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=11469, opcode='PUSH2', imm=Some("22a3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11472, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11475, opcode='PUSH2', imm=Some("199c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11478, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11480, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=11481, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11484, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=11485, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11488, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11489, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11490, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=11491, opcode='BYTE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a +DEBUG azoth_core::encoder: Encoding instruction: pc=11492, opcode='PUSH2', imm=Some("22af") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11495, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=11496, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=11497, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11500, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11501, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11502, opcode='MSTORE8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 +DEBUG azoth_core::encoder: Encoding instruction: pc=11503, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11504, opcode='PUSH2', imm=Some("2cb9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11507, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11508, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11509, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11511, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=11512, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=11516, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11518, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=11519, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=11520, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=11521, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11523, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11525, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=11526, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11527, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=11528, opcode='PUSH1', imm=Some("1c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11530, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11532, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=11533, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11534, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=11535, opcode='PUSH32', imm=Some("015961d9f9b9f05f2e5ca2fc01435f9e7b4bc5e92e825f30855340bd20dd92ba") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=11568, opcode='PUSH2', imm=Some("3aa7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11571, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11572, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=11573, opcode='PUSH32', imm=Some("483717b895d0947f4f38c68e64302cbe290795c94bec3c5fe13a2eda20dd5813") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=11606, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=11607, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11609, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=11610, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11611, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=11612, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11614, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11615, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=11616, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11617, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=11618, opcode='PUSH2', imm=Some("2d67") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11621, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=11622, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11623, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11624, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11626, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=11627, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=11631, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11633, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=11634, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=11635, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=11636, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11638, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11640, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=11641, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11642, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=11643, opcode='PUSH1', imm=Some("12") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11645, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11647, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=11648, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11649, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=11650, opcode='PUSH18', imm=Some("0496e76616c696420746f7069637320524c5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH18' -> byte 0x71 +DEBUG azoth_core::encoder: Added 18 immediate bytes for PUSH18 +DEBUG azoth_core::encoder: Encoding instruction: pc=11669, opcode='PUSH1', imm=Some("74") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11671, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=11672, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11674, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=11675, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11676, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=11677, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11679, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11680, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=11681, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11682, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=11683, opcode='PUSH2', imm=Some("2da8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11686, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=11687, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11688, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11689, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11691, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=11692, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=11696, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11698, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=11699, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=11700, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=11701, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11703, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11705, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=11706, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11707, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=11708, opcode='PUSH1', imm=Some("15") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11710, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11712, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=11713, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11714, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=11715, opcode='PUSH32', imm=Some("1dd33e28b1d9432353170da20676d4626a9c9e4d0fb51a2bbb05ef285e6dc0ab") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=11748, opcode='PUSH2', imm=Some("873c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11751, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11752, opcode='PUSH4', imm=Some("504dbcab") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=11757, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11758, opcode='PUSH4', imm=Some("fa6b6338") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=11763, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11764, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11765, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=11766, opcode='PUSH8', imm=Some("47194acd5891b72d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=11775, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11776, opcode='PUSH8', imm=Some("27729041c4c136a1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=11785, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11786, opcode='PUSH8', imm=Some("2471bd531c712cc8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=11795, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=11796, opcode='PUSH8', imm=Some("418eafd67f31b492") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 +DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 +DEBUG azoth_core::encoder: Encoding instruction: pc=11805, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=11806, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=11807, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11809, opcode='PUSH2', imm=Some("33b6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11812, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11814, opcode='CODECOPY', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 +DEBUG azoth_core::encoder: Encoding instruction: pc=11815, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11817, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=11818, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11819, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=11820, opcode='PUSH2', imm=Some("58e9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11823, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11824, opcode='PUSH2', imm=Some("65e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11827, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11828, opcode='PUSH32', imm=Some("12478dabdac12bcb3486df777b7f7ee778eda36dffaffb57ef7afded7fceef77") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=11861, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=11862, opcode='PUSH16', imm=Some("e2bcda79036f3be04f406990e92120ca") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=11879, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11880, opcode='PUSH16', imm=Some("ac1bbc213f69fc9ef5dbdda2617e7495") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=11897, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=11898, opcode='PUSH16', imm=Some("0678c94f932cf5dc4c4ead627ba313d2") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f +DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 +DEBUG azoth_core::encoder: Encoding instruction: pc=11915, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=11916, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=11917, opcode='PUSH1', imm=Some("58") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11919, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=11920, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11922, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=11923, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11924, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=11925, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11927, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11928, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=11929, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11930, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=11931, opcode='PUSH2', imm=Some("2ea0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=11934, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=11935, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=11936, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=11937, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11939, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=11940, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=11944, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11946, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=11947, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=11948, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=11949, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11951, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11953, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=11954, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11955, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=11956, opcode='PUSH1', imm=Some("13") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11958, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11960, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=11961, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=11962, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=11963, opcode='PUSH32', imm=Some("a54cbea4b7996710ce239be689f6f02ac5cf93a727f842fde304b19781c0939a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=11996, opcode='PUSH1', imm=Some("0e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=11998, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=11999, opcode='DIV', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DIV' -> byte 0x04 +DEBUG azoth_core::encoder: Encoding instruction: pc=12000, opcode='PUSH2', imm=Some("c649") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12003, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12004, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=12005, opcode='PUSH2', imm=Some("37af") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12008, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=12009, opcode='PUSH4', imm=Some("e29621a9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=12014, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=12015, opcode='PUSH4', imm=Some("3e229d07") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=12020, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=12021, opcode='PUSH4', imm=Some("bfe915f4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=12026, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=12027, opcode='PUSH4', imm=Some("e290610a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=12032, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=12033, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=12034, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12036, opcode='PUSH2', imm=Some("33d6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12039, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12041, opcode='CODECOPY', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 +DEBUG azoth_core::encoder: Encoding instruction: pc=12042, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12044, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=12045, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=12046, opcode='PUSH32', imm=Some("0bce9fe731af875ca1028b22c0b3b0d9e162472e3aae7c12a8244ff87ad19963") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=12079, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12080, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=12081, opcode='PUSH19', imm=Some("0889840400008c0c862a4401ad0601a00c8868") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH19' -> byte 0x72 +DEBUG azoth_core::encoder: Added 19 immediate bytes for PUSH19 +DEBUG azoth_core::encoder: Encoding instruction: pc=12101, opcode='OR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 +DEBUG azoth_core::encoder: Encoding instruction: pc=12102, opcode='PUSH1', imm=Some("6b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12104, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=12105, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12107, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=12108, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=12109, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=12110, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12112, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12113, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=12114, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12115, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=12116, opcode='PUSH2', imm=Some("2f59") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12119, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=12120, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12121, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12122, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12124, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=12125, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=12129, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12131, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=12132, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=12133, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=12134, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12136, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12138, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=12139, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=12140, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=12141, opcode='PUSH1', imm=Some("14") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12143, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12145, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=12146, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=12147, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=12148, opcode='PUSH20', imm=Some("2b456ec4052ae788e73485f61410a2dc5131e5cc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH20' -> byte 0x73 +DEBUG azoth_core::encoder: Added 20 immediate bytes for PUSH20 +DEBUG azoth_core::encoder: Encoding instruction: pc=12169, opcode='PUSH1', imm=Some("60") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12171, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=12172, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12174, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=12175, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=12176, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=12177, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12179, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12180, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=12181, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12182, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=12183, opcode='PUSH2', imm=Some("2f9c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12186, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=12187, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12188, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12189, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12191, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=12192, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=12196, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12198, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=12199, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=12200, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=12201, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12203, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12205, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=12206, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=12207, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=12208, opcode='PUSH1', imm=Some("18") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12210, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12212, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=12213, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=12214, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=12215, opcode='PUSH32', imm=Some("130436046c83d9f1f517e2dfc7d3aaef733fe2e5b7816cfc7a596fbd6818e25d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=12248, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12250, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=12251, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=12252, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=12253, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12255, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12256, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=12257, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12258, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=12259, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=12260, opcode='PUSH2', imm=Some("2533") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12263, opcode='PUSH2', imm=Some("2540") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12266, opcode='SWAP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 +DEBUG azoth_core::encoder: Encoding instruction: pc=12267, opcode='PUSH2', imm=Some("2520") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12270, opcode='PUSH2', imm=Some("2514") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12273, opcode='PUSH2', imm=Some("2514") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12276, opcode='PUSH2', imm=Some("250d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12279, opcode='PUSH2', imm=Some("2506") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12282, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=12283, opcode='PUSH2', imm=Some("24ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12286, opcode='PUSH32', imm=Some("6ef929568df1644db4e158347e1bc6d54a95d3f8b1e2508b147aad2689a469c8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=12319, opcode='PUSH1', imm=Some("02") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12321, opcode='MUL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MUL' -> byte 0x02 +DEBUG azoth_core::encoder: Encoding instruction: pc=12322, opcode='PUSH2', imm=Some("352a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12325, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=12326, opcode='PUSH4', imm=Some("e66abb55") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 +DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 +DEBUG azoth_core::encoder: Encoding instruction: pc=12331, opcode='XOR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 +DEBUG azoth_core::encoder: Encoding instruction: pc=12332, opcode='PUSH2', imm=Some("24f9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12335, opcode='DUP15', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP15' -> byte 0x8e +DEBUG azoth_core::encoder: Encoding instruction: pc=12336, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=12337, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12339, opcode='PUSH2', imm=Some("253a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12342, opcode='SWAP16', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP16' -> byte 0x9f +DEBUG azoth_core::encoder: Encoding instruction: pc=12343, opcode='PUSH2', imm=Some("24cd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12346, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12349, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12352, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=12353, opcode='PUSH2', imm=Some("24c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12356, opcode='PUSH1', imm=Some("c0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12358, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12360, opcode='PUSH2', imm=Some("24be") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12363, opcode='DUP16', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP16' -> byte 0x8f +DEBUG azoth_core::encoder: Encoding instruction: pc=12364, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12367, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=12368, opcode='SWAP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP11' -> byte 0x9a +DEBUG azoth_core::encoder: Encoding instruction: pc=12369, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12372, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=12373, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=12374, opcode='SWAP15', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP15' -> byte 0x9e +DEBUG azoth_core::encoder: Encoding instruction: pc=12375, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12378, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12379, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12380, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=12381, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=12382, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=12383, opcode='PUSH2', imm=Some("2d60") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12386, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12387, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12388, opcode='DUP12', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b +DEBUG azoth_core::encoder: Encoding instruction: pc=12389, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=12390, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12393, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12394, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12395, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=12396, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=12397, opcode='PUSH2', imm=Some("312f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12400, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=12401, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=12402, opcode='PUSH2', imm=Some("132b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12405, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12408, opcode='PUSH2', imm=Some("1326") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12411, opcode='PUSH2', imm=Some("1321") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12414, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12417, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12420, opcode='PUSH2', imm=Some("24f1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12423, opcode='SWAP8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP8' -> byte 0x97 +DEBUG azoth_core::encoder: Encoding instruction: pc=12424, opcode='DUP14', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP14' -> byte 0x8d +DEBUG azoth_core::encoder: Encoding instruction: pc=12425, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=12426, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12429, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12430, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12431, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=12432, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=12433, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=12434, opcode='PUSH2', imm=Some("348d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12437, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12438, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12439, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=12440, opcode='PUSH2', imm=Some("2da1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12443, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12444, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12445, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=12446, opcode='DUP13', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP13' -> byte 0x8c +DEBUG azoth_core::encoder: Encoding instruction: pc=12447, opcode='PUSH2', imm=Some("2082") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12450, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12451, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12452, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=12453, opcode='DUP12', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b +DEBUG azoth_core::encoder: Encoding instruction: pc=12454, opcode='PUSH2', imm=Some("2082") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12457, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12458, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12459, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=12460, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=12461, opcode='PUSH2', imm=Some("348d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12464, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12465, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12466, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12468, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12470, opcode='PUSH1', imm=Some("a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12472, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=12473, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=12474, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=12475, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12476, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12477, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12478, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12480, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12482, opcode='PUSH1', imm=Some("a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12484, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=12485, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=12486, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12487, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=12488, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=12489, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=12490, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=12491, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=12492, opcode='PUSH2', imm=Some("2e99") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12495, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12496, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12497, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=12498, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=12499, opcode='PUSH2', imm=Some("2082") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12502, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12503, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12504, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=12505, opcode='PUSH2', imm=Some("34ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12508, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12509, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12510, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=12511, opcode='PUSH2', imm=Some("254f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12514, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12516, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=12517, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=12518, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=12519, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=12520, opcode='PUSH2', imm=Some("2f52") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12523, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12524, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12525, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=12526, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=12527, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=12528, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12529, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=12530, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=12531, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=12532, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=12533, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=12534, opcode='PUSH2', imm=Some("311b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12537, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=12538, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12540, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12541, opcode='PUSH1', imm=Some("08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12543, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=12544, opcode='PUSH2', imm=Some("2575") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12547, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12550, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12553, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12556, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=12557, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=12558, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12561, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12562, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12563, opcode='OR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 +DEBUG azoth_core::encoder: Encoding instruction: pc=12564, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=12565, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=12566, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=12567, opcode='PUSH2', imm=Some("30f0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12570, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12571, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12572, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12573, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=12574, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=12575, opcode='PUSH2', imm=Some("258d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12578, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=12579, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=12580, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=12581, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=12582, opcode='PUSH2', imm=Some("2f95") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12585, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12586, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12587, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12589, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12590, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12591, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12592, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=12593, opcode='PUSH2', imm=Some("24f1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12596, opcode='DUP14', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP14' -> byte 0x8d +DEBUG azoth_core::encoder: Encoding instruction: pc=12597, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12600, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12601, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12602, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12603, opcode='PUSH2', imm=Some("25a9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12606, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=12607, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=12608, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=12609, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=12610, opcode='PUSH2', imm=Some("1ffa") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12613, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12614, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12615, opcode='PUSH2', imm=Some("25b9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12618, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12621, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12624, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=12625, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=12626, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12629, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12630, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12631, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=12632, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12634, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=12635, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=12636, opcode='PUSH1', imm=Some("80") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12638, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=12639, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=12640, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=12641, opcode='PUSH2', imm=Some("316d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12644, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=12645, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=12646, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=12647, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=12648, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=12649, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12651, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12652, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12653, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12654, opcode='PUSH1', imm=Some("b8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12656, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=12657, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=12658, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=12659, opcode='PUSH2', imm=Some("3188") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12662, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=12663, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=12664, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=12665, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=12666, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12669, opcode='PUSH2', imm=Some("1326") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12672, opcode='PUSH2', imm=Some("14e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12675, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=12676, opcode='PUSH2', imm=Some("19d7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12679, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12680, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12681, opcode='PUSH1', imm=Some("c0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12683, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=12684, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=12685, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=12686, opcode='PUSH2', imm=Some("31f4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12689, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=12690, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=12691, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=12692, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12695, opcode='PUSH2', imm=Some("2602") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12698, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=12699, opcode='PUSH2', imm=Some("19c4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12702, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12703, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12704, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12705, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=12706, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=12707, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=12708, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=12709, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12710, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=12711, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=12712, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=12713, opcode='PUSH2', imm=Some("31bc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12716, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=12717, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=12718, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=12719, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=12720, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12721, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12724, opcode='PUSH2', imm=Some("14e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12727, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=12728, opcode='PUSH2', imm=Some("0ced") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12731, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12732, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12733, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12734, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=12735, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=12736, opcode='PUSH2', imm=Some("262e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12739, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12741, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=12742, opcode='PUSH1', imm=Some("08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12744, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=12745, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12746, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12747, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12748, opcode='PUSH2', imm=Some("264d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12751, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12754, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12757, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12760, opcode='PUSH2', imm=Some("2647") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12763, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=12764, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12767, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=12768, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12771, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12772, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12773, opcode='DUP9', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 +DEBUG azoth_core::encoder: Encoding instruction: pc=12774, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12777, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12778, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12779, opcode='OR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 +DEBUG azoth_core::encoder: Encoding instruction: pc=12780, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=12781, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=12782, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=12783, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12784, opcode='PUSH2', imm=Some("31a5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12787, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12788, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12789, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12791, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=12792, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=12793, opcode='PUSH2', imm=Some("320d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12796, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=12797, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=12798, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=12799, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12802, opcode='PUSH2', imm=Some("1326") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12805, opcode='PUSH2', imm=Some("14e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12808, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=12809, opcode='PUSH2', imm=Some("19b1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12812, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12813, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12814, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=12815, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12818, opcode='PUSH2', imm=Some("267d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12821, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=12822, opcode='PUSH2', imm=Some("199e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12825, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12826, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12827, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12828, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=12829, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=12830, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=12831, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=12832, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12833, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=12834, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=12835, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=12836, opcode='PUSH2', imm=Some("3237") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12839, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=12840, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=12841, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=12842, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=12843, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12844, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12847, opcode='PUSH2', imm=Some("14e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12850, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=12851, opcode='PUSH2', imm=Some("0ced") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12854, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12855, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12856, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12857, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=12858, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=12859, opcode='PUSH2', imm=Some("26a9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12862, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12864, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=12865, opcode='PUSH1', imm=Some("08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12867, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=12868, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12869, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12870, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12871, opcode='PUSH2', imm=Some("26c2") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12874, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12877, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12880, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12883, opcode='PUSH2', imm=Some("2647") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12886, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=12887, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12890, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=12891, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12894, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12895, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12896, opcode='OR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 +DEBUG azoth_core::encoder: Encoding instruction: pc=12897, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=12898, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=12899, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=12900, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12901, opcode='PUSH2', imm=Some("3220") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12904, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12905, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12906, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12907, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=12908, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=12909, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=12910, opcode='PUSH2', imm=Some("33cd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12913, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=12914, opcode='PUSH2', imm=Some("26e3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12917, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12920, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12923, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=12924, opcode='PUSH2', imm=Some("19fb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12927, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12928, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12929, opcode='PUSH1', imm=Some("10") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12931, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=12932, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=12933, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=12934, opcode='PUSH2', imm=Some("334f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12937, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=12938, opcode='PUSH2', imm=Some("2706") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12941, opcode='PUSH2', imm=Some("2701") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12944, opcode='PUSH2', imm=Some("26fc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12947, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=12948, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=12949, opcode='PUSH2', imm=Some("2a14") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12952, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12953, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12954, opcode='PUSH2', imm=Some("1230") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12957, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12958, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12959, opcode='PUSH2', imm=Some("2229") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12962, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12963, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12964, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=12965, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12967, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=12968, opcode='PUSH1', imm=Some("0f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12970, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12972, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=12973, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=12974, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=12975, opcode='BYTE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a +DEBUG azoth_core::encoder: Encoding instruction: pc=12976, opcode='PUSH2', imm=Some("271b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12979, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=12980, opcode='PUSH2', imm=Some("19fb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12983, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=12984, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12985, opcode='MSTORE8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 +DEBUG azoth_core::encoder: Encoding instruction: pc=12986, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=12988, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=12989, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=12990, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=12991, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=12992, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=12993, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=12994, opcode='PUSH2', imm=Some("334a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=12997, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=12998, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=12999, opcode='PUSH2', imm=Some("275a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13002, opcode='PUSH2', imm=Some("274a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13005, opcode='PUSH2', imm=Some("2741") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13008, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13011, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13014, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13016, opcode='SWAP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 +DEBUG azoth_core::encoder: Encoding instruction: pc=13017, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=13018, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13021, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13022, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13023, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13025, opcode='SHR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c +DEBUG azoth_core::encoder: Encoding instruction: pc=13026, opcode='PUSH1', imm=Some("0f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13028, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=13029, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=13030, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13031, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13032, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13034, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=13035, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13037, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13039, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13041, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=13042, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=13043, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=13044, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=13045, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=13046, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13047, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13048, opcode='PUSH2', imm=Some("2773") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13051, opcode='PUSH2', imm=Some("2769") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13054, opcode='PUSH2', imm=Some("26fc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13057, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=13058, opcode='PUSH2', imm=Some("2a14") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13061, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13062, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13063, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=13064, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=13065, opcode='BYTE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a +DEBUG azoth_core::encoder: Encoding instruction: pc=13066, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=13067, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=13068, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13071, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13072, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13073, opcode='MSTORE8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 +DEBUG azoth_core::encoder: Encoding instruction: pc=13074, opcode='PUSH2', imm=Some("279a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13077, opcode='PUSH1', imm=Some("0f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13079, opcode='PUSH2', imm=Some("2789") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13082, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13085, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13088, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=13089, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=13090, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13093, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13094, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13095, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=13096, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13098, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=13099, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13101, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13103, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13105, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=13106, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=13107, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=13108, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=13109, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=13110, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13111, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13112, opcode='PUSH2', imm=Some("27a6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13115, opcode='PUSH2', imm=Some("2769") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13118, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=13119, opcode='PUSH2', imm=Some("2a14") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13122, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13123, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13124, opcode='MSTORE8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 +DEBUG azoth_core::encoder: Encoding instruction: pc=13125, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=13126, opcode='PUSH2', imm=Some("32bc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13129, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13130, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13131, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13132, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=13133, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13134, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13135, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13136, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13137, opcode='PUSH2', imm=Some("27c8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13140, opcode='PUSH2', imm=Some("2701") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13143, opcode='PUSH2', imm=Some("27c3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13146, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=13147, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=13148, opcode='PUSH2', imm=Some("2a14") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13151, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13152, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13153, opcode='PUSH2', imm=Some("1221") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13156, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13157, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13158, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13160, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13161, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=13162, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=13163, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=13164, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=13165, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=13166, opcode='PUSH2', imm=Some("334a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13169, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=13170, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=13171, opcode='PUSH2', imm=Some("27ed") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13174, opcode='PUSH2', imm=Some("274a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13177, opcode='PUSH2', imm=Some("2741") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13180, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13183, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13186, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13188, opcode='SWAP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 +DEBUG azoth_core::encoder: Encoding instruction: pc=13189, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=13190, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13193, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13194, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13195, opcode='PUSH2', imm=Some("2801") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13198, opcode='PUSH2', imm=Some("2769") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13201, opcode='PUSH2', imm=Some("27fc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13204, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=13205, opcode='PUSH2', imm=Some("1230") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13208, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13209, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13210, opcode='PUSH2', imm=Some("2a14") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13213, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13214, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13215, opcode='MSTORE8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 +DEBUG azoth_core::encoder: Encoding instruction: pc=13216, opcode='PUSH2', imm=Some("2817") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13219, opcode='PUSH1', imm=Some("0f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13221, opcode='PUSH2', imm=Some("2789") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13224, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13227, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13230, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=13231, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=13232, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13235, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13236, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13237, opcode='PUSH2', imm=Some("2829") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13240, opcode='PUSH2', imm=Some("2769") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13243, opcode='PUSH2', imm=Some("1495") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13246, opcode='PUSH2', imm=Some("27fc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13249, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=13250, opcode='PUSH2', imm=Some("1230") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13253, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13254, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13255, opcode='MSTORE8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 +DEBUG azoth_core::encoder: Encoding instruction: pc=13256, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=13257, opcode='PUSH2', imm=Some("3368") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13260, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13261, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13262, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13263, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13264, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=13265, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=13266, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=13267, opcode='PUSH2', imm=Some("2840") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13270, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=13271, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=13272, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=13273, opcode='PUSH2', imm=Some("0cfb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13276, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13277, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13278, opcode='PUSH2', imm=Some("284a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13281, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=13282, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=13283, opcode='PUSH2', imm=Some("2a14") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13286, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13287, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13288, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=13289, opcode='PUSH2', imm=Some("3486") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13292, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=13293, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=13294, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13295, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=13296, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=13297, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=13298, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=13299, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=13300, opcode='PUSH2', imm=Some("347d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13303, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=13304, opcode='PUSH2', imm=Some("286d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13307, opcode='PUSH2', imm=Some("2867") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13310, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=13311, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=13312, opcode='PUSH2', imm=Some("0cfb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13315, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13316, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13317, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13319, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=13320, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=13321, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13322, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13323, opcode='PUSH2', imm=Some("345f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13326, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=13327, opcode='PUSH2', imm=Some("2896") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13330, opcode='PUSH2', imm=Some("2741") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13333, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13336, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13339, opcode='PUSH2', imm=Some("2890") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13342, opcode='PUSH2', imm=Some("288a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13345, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=13346, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=13347, opcode='PUSH2', imm=Some("0cfb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13350, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13351, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13352, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13354, opcode='SHR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c +DEBUG azoth_core::encoder: Encoding instruction: pc=13355, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=13356, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13357, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13358, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=13359, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13362, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13363, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13364, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13366, opcode='PUSH2', imm=Some("28ab") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13369, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13372, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13375, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13378, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=13379, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=13380, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13383, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13384, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13385, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=13386, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=13387, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=13388, opcode='PUSH2', imm=Some("3457") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13391, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=13392, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13394, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=13395, opcode='PUSH2', imm=Some("33ee") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13398, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13399, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13400, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13401, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13402, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13403, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13404, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=13405, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=13406, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13407, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13408, opcode='PUSH1', imm=Some("0f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13410, opcode='PUSH2', imm=Some("28da") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13413, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13416, opcode='PUSH2', imm=Some("1370") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13419, opcode='PUSH2', imm=Some("2890") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13422, opcode='PUSH2', imm=Some("288a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13425, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=13426, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=13427, opcode='PUSH2', imm=Some("0cfb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13430, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13431, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13432, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=13433, opcode='PUSH2', imm=Some("3433") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13436, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13437, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13438, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13439, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13440, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13441, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13442, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13444, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=13445, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13446, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13447, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13448, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13449, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13450, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=13451, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=13452, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13453, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13454, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=13455, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=13456, opcode='PUSH1', imm=Some("05") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13458, opcode='PUSH1', imm=Some("fd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13460, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=13461, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=13462, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13464, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13466, opcode='PUSH1', imm=Some("f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13468, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=13469, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=13470, opcode='NOT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 +DEBUG azoth_core::encoder: Encoding instruction: pc=13471, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=13472, opcode='PUSH2', imm=Some("290e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13475, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=13476, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=13477, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=13478, opcode='DUP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 +DEBUG azoth_core::encoder: Encoding instruction: pc=13479, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13482, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13483, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13484, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=13485, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=13486, opcode='SUB', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 +DEBUG azoth_core::encoder: Encoding instruction: pc=13487, opcode='PUSH2', imm=Some("34ba") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13490, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=13491, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=13492, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13494, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=13495, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=13496, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=13497, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13498, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13499, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13501, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=13502, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=13506, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13508, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=13509, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=13510, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=13511, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13513, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13515, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=13516, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=13517, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=13518, opcode='PUSH1', imm=Some("17") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13520, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13522, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=13523, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=13524, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=13525, opcode='PUSH32', imm=Some("e7d57c48a7e98c8f60d4a8cfd2f7f15715ff0d1d166f6040cca78faba83b5bdc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=13558, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13560, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=13561, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=13562, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=13563, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13565, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=13566, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=13567, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13568, opcode='PUSH2', imm=Some("296d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13571, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=13572, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=13573, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=13574, opcode='PUSH2', imm=Some("1ffa") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13577, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13578, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13579, opcode='PUSH2', imm=Some("297e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13582, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13585, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13588, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=13589, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=13590, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=13591, opcode='PUSH2', imm=Some("18a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13594, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13595, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13596, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=13597, opcode='PUSH1', imm=Some("ff") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13599, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=13600, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=13601, opcode='PUSH1', imm=Some("80") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13603, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=13604, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=13605, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=13606, opcode='PUSH2', imm=Some("3535") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13609, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=13610, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13611, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13612, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13613, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13614, opcode='PUSH2', imm=Some("1928") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13617, opcode='PUSH2', imm=Some("21e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13620, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13621, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13622, opcode='PUSH1', imm=Some("b8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13624, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=13625, opcode='SWAP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 +DEBUG azoth_core::encoder: Encoding instruction: pc=13626, opcode='SWAP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 +DEBUG azoth_core::encoder: Encoding instruction: pc=13627, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=13628, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=13629, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=13630, opcode='SWAP7', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 +DEBUG azoth_core::encoder: Encoding instruction: pc=13631, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=13632, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=13633, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=13634, opcode='PUSH2', imm=Some("359c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13637, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=13638, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13639, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13642, opcode='PUSH2', imm=Some("29b5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13645, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=13646, opcode='PUSH2', imm=Some("19d7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13649, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13650, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13651, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=13652, opcode='PUSH2', imm=Some("29bf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13655, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=13656, opcode='PUSH2', imm=Some("2229") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13659, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13660, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13661, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=13662, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=13663, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13664, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=13665, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=13666, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=13667, opcode='PUSH2', imm=Some("3573") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13670, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=13671, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13672, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13673, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13674, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13675, opcode='PUSH2', imm=Some("14e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13678, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=13679, opcode='PUSH2', imm=Some("0ced") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13682, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13683, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13684, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=13685, opcode='PUSH2', imm=Some("29ec") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13688, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13691, opcode='PUSH2', imm=Some("199c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13694, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13696, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=13697, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13700, opcode='DUP10', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 +DEBUG azoth_core::encoder: Encoding instruction: pc=13701, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13704, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13705, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13706, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=13707, opcode='BYTE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a +DEBUG azoth_core::encoder: Encoding instruction: pc=13708, opcode='PUSH2', imm=Some("29f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13711, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=13712, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=13713, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13716, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13717, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13718, opcode='MSTORE8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 +DEBUG azoth_core::encoder: Encoding instruction: pc=13719, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=13720, opcode='PUSH2', imm=Some("355f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13723, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13724, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13725, opcode='PUSH1', imm=Some("c0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13727, opcode='GT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 +DEBUG azoth_core::encoder: Encoding instruction: pc=13728, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=13729, opcode='PUSH2', imm=Some("3636") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13732, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=13733, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13736, opcode='PUSH2', imm=Some("2a13") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13739, opcode='SWAP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 +DEBUG azoth_core::encoder: Encoding instruction: pc=13740, opcode='PUSH2', imm=Some("19c4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13743, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13744, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13745, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=13746, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=13747, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=13748, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=13749, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13750, opcode='DUP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 +DEBUG azoth_core::encoder: Encoding instruction: pc=13751, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=13752, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=13753, opcode='PUSH2', imm=Some("360e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13756, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=13757, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13758, opcode='PUSH2', imm=Some("2a29") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13761, opcode='DUP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 +DEBUG azoth_core::encoder: Encoding instruction: pc=13762, opcode='PUSH2', imm=Some("2229") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13765, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13766, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13767, opcode='SWAP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 +DEBUG azoth_core::encoder: Encoding instruction: pc=13768, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=13769, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13770, opcode='DUP6', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 +DEBUG azoth_core::encoder: Encoding instruction: pc=13771, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=13772, opcode='LT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 +DEBUG azoth_core::encoder: Encoding instruction: pc=13773, opcode='PUSH2', imm=Some("35e1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13776, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=13777, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13778, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13779, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13780, opcode='POP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 +DEBUG azoth_core::encoder: Encoding instruction: pc=13781, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=13782, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13785, opcode='PUSH2', imm=Some("14e0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13788, opcode='SWAP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 +DEBUG azoth_core::encoder: Encoding instruction: pc=13789, opcode='PUSH2', imm=Some("0ced") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13792, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13793, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13794, opcode='DUP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 +DEBUG azoth_core::encoder: Encoding instruction: pc=13795, opcode='PUSH2', imm=Some("2a5e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13798, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13801, opcode='PUSH2', imm=Some("199c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13804, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13806, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=13807, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13810, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=13811, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13814, opcode='DUP12', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b +DEBUG azoth_core::encoder: Encoding instruction: pc=13815, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13818, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13819, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13820, opcode='PUSH0', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f +DEBUG azoth_core::encoder: Encoding instruction: pc=13821, opcode='BYTE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a +DEBUG azoth_core::encoder: Encoding instruction: pc=13822, opcode='PUSH2', imm=Some("2a6a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13825, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=13826, opcode='DUP12', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b +DEBUG azoth_core::encoder: Encoding instruction: pc=13827, opcode='PUSH2', imm=Some("1a08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13830, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13831, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13832, opcode='MSTORE8', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 +DEBUG azoth_core::encoder: Encoding instruction: pc=13833, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=13834, opcode='PUSH2', imm=Some("35c9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13837, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13838, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13839, opcode='SWAP4', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 +DEBUG azoth_core::encoder: Encoding instruction: pc=13840, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13842, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=13843, opcode='PUSH1', imm=Some("08") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13845, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=13846, opcode='PUSH2', imm=Some("2a91") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13849, opcode='PUSH2', imm=Some("0498") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13852, opcode='PUSH2', imm=Some("131b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13855, opcode='PUSH2', imm=Some("12c6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13858, opcode='PUSH2', imm=Some("1a48") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13861, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=13862, opcode='PUSH2', imm=Some("17b7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13865, opcode='DUP11', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a +DEBUG azoth_core::encoder: Encoding instruction: pc=13866, opcode='PUSH2', imm=Some("0cdf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13869, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13870, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13871, opcode='OR', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 +DEBUG azoth_core::encoder: Encoding instruction: pc=13872, opcode='SWAP5', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 +DEBUG azoth_core::encoder: Encoding instruction: pc=13873, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=13874, opcode='PUSH2', imm=Some("35b5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13877, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=13878, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13879, opcode='PUSH1', imm=Some("40") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13881, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=13882, opcode='PUSH3', imm=Some("461bcd") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 +DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 +DEBUG azoth_core::encoder: Encoding instruction: pc=13886, opcode='PUSH1', imm=Some("e5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13888, opcode='SHL', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b +DEBUG azoth_core::encoder: Encoding instruction: pc=13889, opcode='DUP2', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 +DEBUG azoth_core::encoder: Encoding instruction: pc=13890, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=13891, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13893, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13895, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=13896, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=13897, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=13898, opcode='PUSH1', imm=Some("1e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13900, opcode='PUSH1', imm=Some("24") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13902, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=13903, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=13904, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=13905, opcode='PUSH32', imm=Some("9c573f5db4f42053e5e13be8f9bd35b0bc33acf45f3cbbd1911652f356d540f3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=13938, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13940, opcode='PUSH2', imm=Some("33f6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=13943, opcode='PUSH1', imm=Some("20") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13945, opcode='CODECOPY', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 +DEBUG azoth_core::encoder: Encoding instruction: pc=13946, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13948, opcode='MLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 +DEBUG azoth_core::encoder: Encoding instruction: pc=13949, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=13950, opcode='PUSH32', imm=Some("57f9f9e7e774ed6e2b7ff47fe97e67af6561767b3d266f6f7db46ff9737600d8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f +DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 +DEBUG azoth_core::encoder: Encoding instruction: pc=13983, opcode='AND', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 +DEBUG azoth_core::encoder: Encoding instruction: pc=13984, opcode='PUSH1', imm=Some("44") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13986, opcode='DUP3', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 +DEBUG azoth_core::encoder: Encoding instruction: pc=13987, opcode='ADD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 +DEBUG azoth_core::encoder: Encoding instruction: pc=13988, opcode='MSTORE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 +DEBUG azoth_core::encoder: Encoding instruction: pc=13989, opcode='PUSH1', imm=Some("64") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13991, opcode='SWAP1', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 +DEBUG azoth_core::encoder: Encoding instruction: pc=13992, opcode='REVERT', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd +DEBUG azoth_core::encoder: Encoding instruction: pc=13993, opcode='INVALID', imm=Some("fe") + WARN azoth_core::encoder: Encoding INVALID opcode at pc=13993 +DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe +DEBUG azoth_core::encoder: Encoding instruction: pc=13994, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13995, opcode='INVALID', imm=Some("fe") + WARN azoth_core::encoder: Encoding INVALID opcode at pc=13995 +DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe +DEBUG azoth_core::encoder: Encoding instruction: pc=13996, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=13997, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=13999, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14001, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14002, opcode='PUSH2', imm=Some("36aa") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14005, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14006, opcode='PUSH2', imm=Some("012b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14009, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14010, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14011, opcode='PUSH2', imm=Some("36ac") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14014, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14015, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14016, opcode='INVALID', imm=Some("fe") + WARN azoth_core::encoder: Encoding INVALID opcode at pc=14016 +DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe +DEBUG azoth_core::encoder: Encoding instruction: pc=14017, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14018, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14020, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14022, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14023, opcode='PUSH2', imm=Some("36bf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14026, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14027, opcode='PUSH1', imm=Some("ef") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14029, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14030, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14031, opcode='PUSH2', imm=Some("36c1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14034, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14035, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14036, opcode='INVALID', imm=Some("fe") + WARN azoth_core::encoder: Encoding INVALID opcode at pc=14036 +DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe +DEBUG azoth_core::encoder: Encoding instruction: pc=14037, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14038, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14040, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14042, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14043, opcode='PUSH2', imm=Some("36d3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14046, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14047, opcode='PUSH2', imm=Some("010d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14050, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14051, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14052, opcode='PUSH2', imm=Some("36d5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14055, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14056, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14057, opcode='INVALID', imm=Some("fe") + WARN azoth_core::encoder: Encoding INVALID opcode at pc=14057 +DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe +DEBUG azoth_core::encoder: Encoding instruction: pc=14058, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14059, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14061, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14063, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14064, opcode='PUSH2', imm=Some("36e8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14067, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14068, opcode='PUSH1', imm=Some("f4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14070, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14071, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14072, opcode='PUSH2', imm=Some("36ea") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14075, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14076, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14077, opcode='INVALID', imm=Some("fe") + WARN azoth_core::encoder: Encoding INVALID opcode at pc=14077 +DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe +DEBUG azoth_core::encoder: Encoding instruction: pc=14078, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14079, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14081, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14083, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14084, opcode='PUSH2', imm=Some("36fc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14087, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14088, opcode='PUSH1', imm=Some("f9") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14090, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14091, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14092, opcode='PUSH2', imm=Some("36fe") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14095, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14096, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14097, opcode='INVALID', imm=Some("fe") + WARN azoth_core::encoder: Encoding INVALID opcode at pc=14097 +DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe +DEBUG azoth_core::encoder: Encoding instruction: pc=14098, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14099, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14101, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14103, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14104, opcode='PUSH2', imm=Some("3710") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14107, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14108, opcode='PUSH2', imm=Some("0144") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14111, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14112, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14113, opcode='PUSH2', imm=Some("3712") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14116, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14117, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14118, opcode='INVALID', imm=Some("fe") + WARN azoth_core::encoder: Encoding INVALID opcode at pc=14118 +DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe +DEBUG azoth_core::encoder: Encoding instruction: pc=14119, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14120, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14122, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14124, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14125, opcode='PUSH2', imm=Some("3725") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14128, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14129, opcode='PUSH2', imm=Some("0108") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14132, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14133, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14134, opcode='PUSH2', imm=Some("3727") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14137, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14138, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14139, opcode='INVALID', imm=Some("fe") + WARN azoth_core::encoder: Encoding INVALID opcode at pc=14139 +DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe +DEBUG azoth_core::encoder: Encoding instruction: pc=14140, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14141, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14143, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14145, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14146, opcode='PUSH2', imm=Some("373a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14149, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14150, opcode='PUSH2', imm=Some("013a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14153, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14154, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14155, opcode='PUSH2', imm=Some("373c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14158, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14159, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14160, opcode='INVALID', imm=Some("fe") + WARN azoth_core::encoder: Encoding INVALID opcode at pc=14160 +DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe +DEBUG azoth_core::encoder: Encoding instruction: pc=14161, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14162, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14164, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14166, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14167, opcode='PUSH2', imm=Some("374f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14170, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14171, opcode='PUSH2', imm=Some("013f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14174, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14175, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14176, opcode='PUSH2', imm=Some("3751") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14179, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14180, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14181, opcode='INVALID', imm=Some("fe") + WARN azoth_core::encoder: Encoding INVALID opcode at pc=14181 +DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe +DEBUG azoth_core::encoder: Encoding instruction: pc=14182, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14183, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14185, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14187, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14188, opcode='PUSH2', imm=Some("3764") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14191, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14192, opcode='PUSH2', imm=Some("0130") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14195, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14196, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14197, opcode='PUSH2', imm=Some("3766") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14200, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14201, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14202, opcode='INVALID', imm=Some("fe") + WARN azoth_core::encoder: Encoding INVALID opcode at pc=14202 +DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe +DEBUG azoth_core::encoder: Encoding instruction: pc=14203, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14204, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14206, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14208, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14209, opcode='PUSH2', imm=Some("3779") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14212, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14213, opcode='PUSH2', imm=Some("0126") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14216, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14217, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14218, opcode='PUSH2', imm=Some("377b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14221, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14222, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14223, opcode='INVALID', imm=Some("fe") + WARN azoth_core::encoder: Encoding INVALID opcode at pc=14223 +DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe +DEBUG azoth_core::encoder: Encoding instruction: pc=14224, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14225, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14227, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14229, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14230, opcode='PUSH2', imm=Some("378e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14233, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14234, opcode='PUSH2', imm=Some("0121") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14237, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14238, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14239, opcode='PUSH2', imm=Some("3790") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14242, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14243, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14244, opcode='INVALID', imm=Some("fe") + WARN azoth_core::encoder: Encoding INVALID opcode at pc=14244 +DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe +DEBUG azoth_core::encoder: Encoding instruction: pc=14245, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14246, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14248, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14250, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14251, opcode='PUSH2', imm=Some("37a3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14254, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14255, opcode='PUSH2', imm=Some("0103") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14258, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14259, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14260, opcode='PUSH2', imm=Some("37a5") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14263, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14264, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14265, opcode='INVALID', imm=Some("fe") + WARN azoth_core::encoder: Encoding INVALID opcode at pc=14265 +DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe +DEBUG azoth_core::encoder: Encoding instruction: pc=14266, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14267, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14269, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14271, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14272, opcode='PUSH2', imm=Some("37b8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14275, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14276, opcode='PUSH1', imm=Some("fe") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14278, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14279, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14280, opcode='PUSH2', imm=Some("37ba") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14283, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14284, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14285, opcode='INVALID', imm=Some("fe") + WARN azoth_core::encoder: Encoding INVALID opcode at pc=14285 +DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe +DEBUG azoth_core::encoder: Encoding instruction: pc=14286, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14287, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14289, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14291, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14292, opcode='PUSH2', imm=Some("37cc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14295, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14296, opcode='PUSH2', imm=Some("0117") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14299, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14300, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14301, opcode='PUSH2', imm=Some("37ce") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14304, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14305, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14306, opcode='INVALID', imm=Some("fe") + WARN azoth_core::encoder: Encoding INVALID opcode at pc=14306 +DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe +DEBUG azoth_core::encoder: Encoding instruction: pc=14307, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14308, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14310, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14312, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14313, opcode='PUSH2', imm=Some("37e1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14316, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14317, opcode='PUSH2', imm=Some("0135") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14320, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14321, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14322, opcode='PUSH2', imm=Some("37e3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14325, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14326, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14327, opcode='INVALID', imm=Some("fe") + WARN azoth_core::encoder: Encoding INVALID opcode at pc=14327 +DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe +DEBUG azoth_core::encoder: Encoding instruction: pc=14328, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14329, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14331, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14333, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14334, opcode='PUSH2', imm=Some("37f6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14337, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14338, opcode='PUSH2', imm=Some("011c") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14341, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14342, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14343, opcode='PUSH2', imm=Some("37f8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14346, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14347, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14348, opcode='INVALID', imm=Some("fe") + WARN azoth_core::encoder: Encoding INVALID opcode at pc=14348 +DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe +DEBUG azoth_core::encoder: Encoding instruction: pc=14349, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14350, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14352, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14354, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14355, opcode='PUSH2', imm=Some("380b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14358, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14359, opcode='PUSH2', imm=Some("0112") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14362, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14363, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14364, opcode='PUSH2', imm=Some("380d") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14367, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14368, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14369, opcode='INVALID', imm=Some("fe") + WARN azoth_core::encoder: Encoding INVALID opcode at pc=14369 +DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe +DEBUG azoth_core::encoder: Encoding instruction: pc=14370, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14371, opcode='PUSH1', imm=Some("01") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14373, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14375, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14376, opcode='PUSH2', imm=Some("3820") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14379, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14380, opcode='PUSH1', imm=Some("ea") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14382, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14383, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14384, opcode='PUSH2', imm=Some("3822") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14387, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14388, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14389, opcode='PUSH2', imm=Some("bf6a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14392, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=14393, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=14394, opcode='PUSH2', imm=Some("3720") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14397, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14398, opcode='PUSH2', imm=Some("3710") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14401, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14402, opcode='PUSH2', imm=Some("3720") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14405, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14406, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14407, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14409, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=14410, opcode='PUSH1', imm=Some("02") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14412, opcode='BYTE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a +DEBUG azoth_core::encoder: Encoding instruction: pc=14413, opcode='PUSH1', imm=Some("c0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14415, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14416, opcode='PUSH2', imm=Some("3858") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14419, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14420, opcode='PUSH2', imm=Some("374f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14423, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14424, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14425, opcode='PUSH2', imm=Some("375f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14428, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14429, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14430, opcode='PUSH2', imm=Some("fead") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14433, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=14434, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=14435, opcode='PUSH2', imm=Some("374a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14438, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14439, opcode='PUSH2', imm=Some("373a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14442, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14443, opcode='PUSH2', imm=Some("374a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14446, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14447, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14448, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14450, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=14451, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14453, opcode='BYTE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a +DEBUG azoth_core::encoder: Encoding instruction: pc=14454, opcode='PUSH1', imm=Some("30") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14456, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14457, opcode='PUSH2', imm=Some("3881") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14460, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14461, opcode='PUSH2', imm=Some("37e1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14464, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14465, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14466, opcode='PUSH2', imm=Some("37f1") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14469, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14470, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14471, opcode='PUSH2', imm=Some("e6fe") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14474, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=14475, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=14476, opcode='PUSH2', imm=Some("3774") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14479, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14480, opcode='PUSH2', imm=Some("3764") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14483, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14484, opcode='PUSH2', imm=Some("3774") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14487, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14488, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14489, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14491, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=14492, opcode='PUSH1', imm=Some("02") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14494, opcode='BYTE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a +DEBUG azoth_core::encoder: Encoding instruction: pc=14495, opcode='PUSH1', imm=Some("d6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14497, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14498, opcode='PUSH2', imm=Some("38aa") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14501, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14502, opcode='PUSH2', imm=Some("36aa") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14505, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14506, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14507, opcode='PUSH2', imm=Some("36ba") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14510, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14511, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14512, opcode='PUSH2', imm=Some("d662") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14515, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=14516, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=14517, opcode='PUSH2', imm=Some("3789") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14520, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14521, opcode='PUSH2', imm=Some("3779") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14524, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14525, opcode='PUSH2', imm=Some("3789") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14528, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14529, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14530, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14532, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=14533, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14535, opcode='BYTE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a +DEBUG azoth_core::encoder: Encoding instruction: pc=14536, opcode='PUSH1', imm=Some("80") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14538, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14539, opcode='PUSH2', imm=Some("38d3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14542, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14543, opcode='PUSH2', imm=Some("378e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14546, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14547, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14548, opcode='PUSH2', imm=Some("379e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14551, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14552, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14553, opcode='PUSH2', imm=Some("a0dc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14556, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=14557, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=14558, opcode='PUSH2', imm=Some("3806") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14561, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14562, opcode='PUSH2', imm=Some("37f6") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14565, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14566, opcode='PUSH2', imm=Some("3806") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14569, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14570, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14571, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14573, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=14574, opcode='PUSH1', imm=Some("02") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14576, opcode='BYTE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a +DEBUG azoth_core::encoder: Encoding instruction: pc=14577, opcode='PUSH1', imm=Some("ab") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14579, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14580, opcode='PUSH2', imm=Some("38fc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14583, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14584, opcode='PUSH2', imm=Some("37cc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14587, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14588, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14589, opcode='PUSH2', imm=Some("37dc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14592, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14593, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14594, opcode='PUSH2', imm=Some("5a55") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14597, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=14598, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=14599, opcode='PUSH2', imm=Some("381b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14602, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14603, opcode='PUSH2', imm=Some("380b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14606, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14607, opcode='PUSH2', imm=Some("381b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14610, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14611, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14612, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14614, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=14615, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14617, opcode='BYTE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a +DEBUG azoth_core::encoder: Encoding instruction: pc=14618, opcode='PUSH1', imm=Some("99") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14620, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14621, opcode='PUSH2', imm=Some("3925") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14624, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14625, opcode='PUSH2', imm=Some("36d3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14628, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14629, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14630, opcode='PUSH2', imm=Some("36e3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14633, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14634, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14635, opcode='PUSH2', imm=Some("7b02") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14638, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=14639, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=14640, opcode='PUSH2', imm=Some("3735") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14643, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14644, opcode='PUSH2', imm=Some("3725") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14647, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14648, opcode='PUSH2', imm=Some("3735") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14651, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14652, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14653, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14655, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=14656, opcode='PUSH1', imm=Some("02") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14658, opcode='BYTE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a +DEBUG azoth_core::encoder: Encoding instruction: pc=14659, opcode='PUSH1', imm=Some("6a") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14661, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14662, opcode='PUSH2', imm=Some("394e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14665, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14666, opcode='PUSH2', imm=Some("37a3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14669, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14670, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14671, opcode='PUSH2', imm=Some("37b3") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14674, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14675, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14676, opcode='PUSH2', imm=Some("f46e") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14679, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=14680, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=14681, opcode='PUSH2', imm=Some("37c7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14684, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14685, opcode='PUSH2', imm=Some("37b8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14688, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14689, opcode='PUSH2', imm=Some("37c7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14692, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14693, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14694, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14696, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=14697, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14699, opcode='BYTE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a +DEBUG azoth_core::encoder: Encoding instruction: pc=14700, opcode='PUSH1', imm=Some("d4") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14702, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14703, opcode='PUSH2', imm=Some("3977") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14706, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14707, opcode='PUSH2', imm=Some("36fc") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14710, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14711, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14712, opcode='PUSH2', imm=Some("370b") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14715, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14716, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14717, opcode='PUSH2', imm=Some("a9cb") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14720, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=14721, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=14722, opcode='PUSH2', imm=Some("36f7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14725, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14726, opcode='PUSH2', imm=Some("36e8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14729, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14730, opcode='PUSH2', imm=Some("36f7") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14733, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14734, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14735, opcode='PUSH1', imm=Some("00") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14737, opcode='CALLDATALOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 +DEBUG azoth_core::encoder: Encoding instruction: pc=14738, opcode='PUSH1', imm=Some("02") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14740, opcode='BYTE', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a +DEBUG azoth_core::encoder: Encoding instruction: pc=14741, opcode='PUSH1', imm=Some("04") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 +DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 +DEBUG azoth_core::encoder: Encoding instruction: pc=14743, opcode='EQ', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 +DEBUG azoth_core::encoder: Encoding instruction: pc=14744, opcode='PUSH2', imm=Some("39a0") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14747, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14748, opcode='PUSH2', imm=Some("36bf") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14751, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14752, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14753, opcode='PUSH2', imm=Some("36ce") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14756, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14757, opcode='JUMPDEST', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b +DEBUG azoth_core::encoder: Encoding instruction: pc=14758, opcode='PUSH2', imm=Some("bcb8") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14761, opcode='SLOAD', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 +DEBUG azoth_core::encoder: Encoding instruction: pc=14762, opcode='ISZERO', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 +DEBUG azoth_core::encoder: Encoding instruction: pc=14763, opcode='PUSH2', imm=Some("382f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14766, opcode='JUMPI', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 +DEBUG azoth_core::encoder: Encoding instruction: pc=14767, opcode='PUSH2', imm=Some("3820") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14770, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 +DEBUG azoth_core::encoder: Encoding instruction: pc=14771, opcode='PUSH2', imm=Some("382f") +DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 +DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 +DEBUG azoth_core::encoder: Encoding instruction: pc=14774, opcode='JUMP', imm=None +DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 + WARN azoth_core::encoder: Encoded 20 unknown opcodes as raw bytes. The resulting bytecode preserves the original bytes but these may represent invalid EVM instructions. +DEBUG azoth_core::encoder: Successfully encoded 7358 instructions into 14775 bytes +DEBUG azoth_transform::obfuscator: Encoded to 14775 bytes +DEBUG azoth_transform::obfuscator: Validating obfuscated runtime jump targets (14775 bytes) +DEBUG heimdall_disassembler::core: fetching target bytecode took 1.320241ms +DEBUG heimdall_disassembler::core: disassembly took 4.208521ms + INFO heimdall_disassembler::core: disassembled 14775 bytes successfully +DEBUG heimdall_disassembler::core: disassembly took 5.608224ms +DEBUG azoth_core::validator: Validator found 650 JUMPDESTs +DEBUG azoth_core::validator: [1] PC 0x11 +DEBUG azoth_core::validator: [2] PC 0xea +DEBUG azoth_core::validator: [3] PC 0xef +DEBUG azoth_core::validator: [4] PC 0xf4 +DEBUG azoth_core::validator: [5] PC 0xf9 +DEBUG azoth_core::validator: [6] PC 0xfe +DEBUG azoth_core::validator: [7] PC 0x103 +DEBUG azoth_core::validator: [8] PC 0x108 +DEBUG azoth_core::validator: [9] PC 0x10d +DEBUG azoth_core::validator: [10] PC 0x112 +DEBUG azoth_core::validator: [11] PC 0x117 +DEBUG azoth_core::validator: [12] PC 0x11c +DEBUG azoth_core::validator: [13] PC 0x121 +DEBUG azoth_core::validator: [14] PC 0x126 +DEBUG azoth_core::validator: [15] PC 0x12b +DEBUG azoth_core::validator: [16] PC 0x130 +DEBUG azoth_core::validator: [17] PC 0x135 +DEBUG azoth_core::validator: [18] PC 0x13a +DEBUG azoth_core::validator: [19] PC 0x13f +DEBUG azoth_core::validator: [20] PC 0x144 +DEBUG azoth_core::validator: [21] PC 0x188 +DEBUG azoth_core::validator: [22] PC 0x194 +DEBUG azoth_core::validator: [23] PC 0x198 +DEBUG azoth_core::validator: [24] PC 0x1c0 +DEBUG azoth_core::validator: [25] PC 0x1fa +DEBUG azoth_core::validator: [26] PC 0x21c +DEBUG azoth_core::validator: [27] PC 0x239 +DEBUG azoth_core::validator: [28] PC 0x25e +DEBUG azoth_core::validator: [29] PC 0x267 +DEBUG azoth_core::validator: [30] PC 0x299 +DEBUG azoth_core::validator: [31] PC 0x2a1 +DEBUG azoth_core::validator: [32] PC 0x2a9 +DEBUG azoth_core::validator: [33] PC 0x2bd +DEBUG azoth_core::validator: [34] PC 0x2cd +DEBUG azoth_core::validator: [35] PC 0x2d6 +DEBUG azoth_core::validator: [36] PC 0x2e4 +DEBUG azoth_core::validator: [37] PC 0x30b +DEBUG azoth_core::validator: [38] PC 0x346 +DEBUG azoth_core::validator: [39] PC 0x355 +DEBUG azoth_core::validator: [40] PC 0x35f +DEBUG azoth_core::validator: [41] PC 0x367 +DEBUG azoth_core::validator: [42] PC 0x369 +DEBUG azoth_core::validator: [43] PC 0x370 +DEBUG azoth_core::validator: [44] PC 0x375 +DEBUG azoth_core::validator: [45] PC 0x391 +DEBUG azoth_core::validator: [46] PC 0x3ae +DEBUG azoth_core::validator: [47] PC 0x3f2 +DEBUG azoth_core::validator: [48] PC 0x401 +DEBUG azoth_core::validator: [49] PC 0x445 +DEBUG azoth_core::validator: [50] PC 0x462 +DEBUG azoth_core::validator: [51] PC 0x493 +DEBUG azoth_core::validator: [52] PC 0x498 +DEBUG azoth_core::validator: [53] PC 0x49e +DEBUG azoth_core::validator: [54] PC 0x4a2 +DEBUG azoth_core::validator: [55] PC 0x4a7 +DEBUG azoth_core::validator: [56] PC 0x4b6 +DEBUG azoth_core::validator: [57] PC 0x4be +DEBUG azoth_core::validator: [58] PC 0x4cb +DEBUG azoth_core::validator: [59] PC 0x4d1 +DEBUG azoth_core::validator: [60] PC 0x4e0 +DEBUG azoth_core::validator: [61] PC 0x4e5 +DEBUG azoth_core::validator: [62] PC 0x549 +DEBUG azoth_core::validator: [63] PC 0x568 +DEBUG azoth_core::validator: [64] PC 0x56d +DEBUG azoth_core::validator: [65] PC 0x572 +DEBUG azoth_core::validator: [66] PC 0x58a +DEBUG azoth_core::validator: [67] PC 0x58f +DEBUG azoth_core::validator: [68] PC 0x59b +DEBUG azoth_core::validator: [69] PC 0x5ae +DEBUG azoth_core::validator: [70] PC 0x5b3 +DEBUG azoth_core::validator: [71] PC 0x5bb +DEBUG azoth_core::validator: [72] PC 0x5c1 +DEBUG azoth_core::validator: [73] PC 0x5cb +DEBUG azoth_core::validator: [74] PC 0x61c +DEBUG azoth_core::validator: [75] PC 0x632 +DEBUG azoth_core::validator: [76] PC 0x637 +DEBUG azoth_core::validator: [77] PC 0x642 +DEBUG azoth_core::validator: [78] PC 0x64d +DEBUG azoth_core::validator: [79] PC 0x655 +DEBUG azoth_core::validator: [80] PC 0x65a +DEBUG azoth_core::validator: [81] PC 0x66e +DEBUG azoth_core::validator: [82] PC 0x69b +DEBUG azoth_core::validator: [83] PC 0x6d5 +DEBUG azoth_core::validator: [84] PC 0x6e9 +DEBUG azoth_core::validator: [85] PC 0x701 +DEBUG azoth_core::validator: [86] PC 0x706 +DEBUG azoth_core::validator: [87] PC 0x720 +DEBUG azoth_core::validator: [88] PC 0x72a +DEBUG azoth_core::validator: [89] PC 0x747 +DEBUG azoth_core::validator: [90] PC 0x781 +DEBUG azoth_core::validator: [91] PC 0x7e0 +DEBUG azoth_core::validator: [92] PC 0x7fa +DEBUG azoth_core::validator: [93] PC 0x803 +DEBUG azoth_core::validator: [94] PC 0x80f +DEBUG azoth_core::validator: [95] PC 0x81c +DEBUG azoth_core::validator: [96] PC 0x844 +DEBUG azoth_core::validator: [97] PC 0x854 +DEBUG azoth_core::validator: [98] PC 0x861 +DEBUG azoth_core::validator: [99] PC 0x868 +DEBUG azoth_core::validator: [100] PC 0x874 +DEBUG azoth_core::validator: [101] PC 0x881 +DEBUG azoth_core::validator: [102] PC 0x887 +DEBUG azoth_core::validator: [103] PC 0x88d +DEBUG azoth_core::validator: [104] PC 0x89a +DEBUG azoth_core::validator: [105] PC 0x8a0 +DEBUG azoth_core::validator: [106] PC 0x8b6 +DEBUG azoth_core::validator: [107] PC 0x8ca +DEBUG azoth_core::validator: [108] PC 0x8d4 +DEBUG azoth_core::validator: [109] PC 0x8dc +DEBUG azoth_core::validator: [110] PC 0x8e1 +DEBUG azoth_core::validator: [111] PC 0x8e6 +DEBUG azoth_core::validator: [112] PC 0x958 +DEBUG azoth_core::validator: [113] PC 0x95d +DEBUG azoth_core::validator: [114] PC 0x96e +DEBUG azoth_core::validator: [115] PC 0x977 +DEBUG azoth_core::validator: [116] PC 0x991 +DEBUG azoth_core::validator: [117] PC 0x99a +DEBUG azoth_core::validator: [118] PC 0x9aa +DEBUG azoth_core::validator: [119] PC 0x9b3 +DEBUG azoth_core::validator: [120] PC 0x9ea +DEBUG azoth_core::validator: [121] PC 0xa03 +DEBUG azoth_core::validator: [122] PC 0xa0f +DEBUG azoth_core::validator: [123] PC 0xa16 +DEBUG azoth_core::validator: [124] PC 0xa3b +DEBUG azoth_core::validator: [125] PC 0xa58 +DEBUG azoth_core::validator: [126] PC 0xa5f +DEBUG azoth_core::validator: [127] PC 0xaa4 +DEBUG azoth_core::validator: [128] PC 0xaab +DEBUG azoth_core::validator: [129] PC 0xb1f +DEBUG azoth_core::validator: [130] PC 0xb26 +DEBUG azoth_core::validator: [131] PC 0xcaa +DEBUG azoth_core::validator: [132] PC 0xccb +DEBUG azoth_core::validator: [133] PC 0xcda +DEBUG azoth_core::validator: [134] PC 0xcdf +DEBUG azoth_core::validator: [135] PC 0xced +DEBUG azoth_core::validator: [136] PC 0xcfb +DEBUG azoth_core::validator: [137] PC 0xd08 +DEBUG azoth_core::validator: [138] PC 0xd0f +DEBUG azoth_core::validator: [139] PC 0xd4c +DEBUG azoth_core::validator: [140] PC 0xd67 +DEBUG azoth_core::validator: [141] PC 0xd89 +DEBUG azoth_core::validator: [142] PC 0xd8e +DEBUG azoth_core::validator: [143] PC 0xda6 +DEBUG azoth_core::validator: [144] PC 0xdb1 +DEBUG azoth_core::validator: [145] PC 0xdb8 +DEBUG azoth_core::validator: [146] PC 0xdf6 +DEBUG azoth_core::validator: [147] PC 0xdfd +DEBUG azoth_core::validator: [148] PC 0xe9f +DEBUG azoth_core::validator: [149] PC 0xea6 +DEBUG azoth_core::validator: [150] PC 0xfe7 +DEBUG azoth_core::validator: [151] PC 0xfee +DEBUG azoth_core::validator: [152] PC 0x1077 +DEBUG azoth_core::validator: [153] PC 0x107e +DEBUG azoth_core::validator: [154] PC 0x10c3 +DEBUG azoth_core::validator: [155] PC 0x10ca +DEBUG azoth_core::validator: [156] PC 0x1172 +DEBUG azoth_core::validator: [157] PC 0x1182 +DEBUG azoth_core::validator: [158] PC 0x118a +DEBUG azoth_core::validator: [159] PC 0x1191 +DEBUG azoth_core::validator: [160] PC 0x11d5 +DEBUG azoth_core::validator: [161] PC 0x11dc +DEBUG azoth_core::validator: [162] PC 0x1221 +DEBUG azoth_core::validator: [163] PC 0x1230 +DEBUG azoth_core::validator: [164] PC 0x123e +DEBUG azoth_core::validator: [165] PC 0x124b +DEBUG azoth_core::validator: [166] PC 0x1252 +DEBUG azoth_core::validator: [167] PC 0x1310 +DEBUG azoth_core::validator: [168] PC 0x1317 +DEBUG azoth_core::validator: [169] PC 0x135c +DEBUG azoth_core::validator: [170] PC 0x138f +DEBUG azoth_core::validator: [171] PC 0x13ab +DEBUG azoth_core::validator: [172] PC 0x13b7 +DEBUG azoth_core::validator: [173] PC 0x13c5 +DEBUG azoth_core::validator: [174] PC 0x13e1 +DEBUG azoth_core::validator: [175] PC 0x13e8 +DEBUG azoth_core::validator: [176] PC 0x142d +DEBUG azoth_core::validator: [177] PC 0x1434 +DEBUG azoth_core::validator: [178] PC 0x1513 +DEBUG azoth_core::validator: [179] PC 0x151a +DEBUG azoth_core::validator: [180] PC 0x1631 +DEBUG azoth_core::validator: [181] PC 0x1638 +DEBUG azoth_core::validator: [182] PC 0x1739 +DEBUG azoth_core::validator: [183] PC 0x1741 +DEBUG azoth_core::validator: [184] PC 0x1766 +DEBUG azoth_core::validator: [185] PC 0x186b +DEBUG azoth_core::validator: [186] PC 0x1892 +DEBUG azoth_core::validator: [187] PC 0x189b +DEBUG azoth_core::validator: [188] PC 0x18a0 +DEBUG azoth_core::validator: [189] PC 0x18ac +DEBUG azoth_core::validator: [190] PC 0x18b3 +DEBUG azoth_core::validator: [191] PC 0x199e +DEBUG azoth_core::validator: [192] PC 0x19b1 +DEBUG azoth_core::validator: [193] PC 0x19c4 +DEBUG azoth_core::validator: [194] PC 0x19d7 +DEBUG azoth_core::validator: [195] PC 0x19ea +DEBUG azoth_core::validator: [196] PC 0x19fb +DEBUG azoth_core::validator: [197] PC 0x1a08 +DEBUG azoth_core::validator: [198] PC 0x1a19 +DEBUG azoth_core::validator: [199] PC 0x1a3a +DEBUG azoth_core::validator: [200] PC 0x1a48 +DEBUG azoth_core::validator: [201] PC 0x1a50 +DEBUG azoth_core::validator: [202] PC 0x1a6b +DEBUG azoth_core::validator: [203] PC 0x1a8f +DEBUG azoth_core::validator: [204] PC 0x1a95 +DEBUG azoth_core::validator: [205] PC 0x1a9a +DEBUG azoth_core::validator: [206] PC 0x1a9f +DEBUG azoth_core::validator: [207] PC 0x1aa5 +DEBUG azoth_core::validator: [208] PC 0x1aa7 +DEBUG azoth_core::validator: [209] PC 0x1aa9 +DEBUG azoth_core::validator: [210] PC 0x1abc +DEBUG azoth_core::validator: [211] PC 0x1ac2 +DEBUG azoth_core::validator: [212] PC 0x1ae4 +DEBUG azoth_core::validator: [213] PC 0x1af2 +DEBUG azoth_core::validator: [214] PC 0x1afb +DEBUG azoth_core::validator: [215] PC 0x1b00 +DEBUG azoth_core::validator: [216] PC 0x1b0e +DEBUG azoth_core::validator: [217] PC 0x1b15 +DEBUG azoth_core::validator: [218] PC 0x1b1e +DEBUG azoth_core::validator: [219] PC 0x1b25 +DEBUG azoth_core::validator: [220] PC 0x1c2d +DEBUG azoth_core::validator: [221] PC 0x1c4f +DEBUG azoth_core::validator: [222] PC 0x1c6a +DEBUG azoth_core::validator: [223] PC 0x1c8e +DEBUG azoth_core::validator: [224] PC 0x1c90 +DEBUG azoth_core::validator: [225] PC 0x1cbb +DEBUG azoth_core::validator: [226] PC 0x1cc2 +DEBUG azoth_core::validator: [227] PC 0x1cc7 +DEBUG azoth_core::validator: [228] PC 0x1ccc +DEBUG azoth_core::validator: [229] PC 0x1cda +DEBUG azoth_core::validator: [230] PC 0x1ce1 +DEBUG azoth_core::validator: [231] PC 0x1ce9 +DEBUG azoth_core::validator: [232] PC 0x1cff +DEBUG azoth_core::validator: [233] PC 0x1d07 +DEBUG azoth_core::validator: [234] PC 0x1d0d +DEBUG azoth_core::validator: [235] PC 0x1d10 +DEBUG azoth_core::validator: [236] PC 0x1d17 +DEBUG azoth_core::validator: [237] PC 0x1d8d +DEBUG azoth_core::validator: [238] PC 0x1d94 +DEBUG azoth_core::validator: [239] PC 0x1e91 +DEBUG azoth_core::validator: [240] PC 0x1ea4 +DEBUG azoth_core::validator: [241] PC 0x1ea9 +DEBUG azoth_core::validator: [242] PC 0x1ec1 +DEBUG azoth_core::validator: [243] PC 0x1ec9 +DEBUG azoth_core::validator: [244] PC 0x1edf +DEBUG azoth_core::validator: [245] PC 0x1f02 +DEBUG azoth_core::validator: [246] PC 0x1f05 +DEBUG azoth_core::validator: [247] PC 0x1f08 +DEBUG azoth_core::validator: [248] PC 0x1f2a +DEBUG azoth_core::validator: [249] PC 0x1f31 +DEBUG azoth_core::validator: [250] PC 0x1f48 +DEBUG azoth_core::validator: [251] PC 0x1f6a +DEBUG azoth_core::validator: [252] PC 0x1f6c +DEBUG azoth_core::validator: [253] PC 0x1f6f +DEBUG azoth_core::validator: [254] PC 0x1f82 +DEBUG azoth_core::validator: [255] PC 0x1f91 +DEBUG azoth_core::validator: [256] PC 0x1f99 +DEBUG azoth_core::validator: [257] PC 0x1fa4 +DEBUG azoth_core::validator: [258] PC 0x1faa +DEBUG azoth_core::validator: [259] PC 0x1fb8 +DEBUG azoth_core::validator: [260] PC 0x1fc3 +DEBUG azoth_core::validator: [261] PC 0x1fce +DEBUG azoth_core::validator: [262] PC 0x1fd5 +DEBUG azoth_core::validator: [263] PC 0x1fde +DEBUG azoth_core::validator: [264] PC 0x1ff3 +DEBUG azoth_core::validator: [265] PC 0x1ffa +DEBUG azoth_core::validator: [266] PC 0x2001 +DEBUG azoth_core::validator: [267] PC 0x2082 +DEBUG azoth_core::validator: [268] PC 0x208f +DEBUG azoth_core::validator: [269] PC 0x20a0 +DEBUG azoth_core::validator: [270] PC 0x20bb +DEBUG azoth_core::validator: [271] PC 0x20dd +DEBUG azoth_core::validator: [272] PC 0x20e3 +DEBUG azoth_core::validator: [273] PC 0x20ff +DEBUG azoth_core::validator: [274] PC 0x2105 +DEBUG azoth_core::validator: [275] PC 0x2120 +DEBUG azoth_core::validator: [276] PC 0x2125 +DEBUG azoth_core::validator: [277] PC 0x2134 +DEBUG azoth_core::validator: [278] PC 0x214d +DEBUG azoth_core::validator: [279] PC 0x2154 +DEBUG azoth_core::validator: [280] PC 0x215e +DEBUG azoth_core::validator: [281] PC 0x217e +DEBUG azoth_core::validator: [282] PC 0x2184 +DEBUG azoth_core::validator: [283] PC 0x2192 +DEBUG azoth_core::validator: [284] PC 0x2198 +DEBUG azoth_core::validator: [285] PC 0x21b3 +DEBUG azoth_core::validator: [286] PC 0x21c2 +DEBUG azoth_core::validator: [287] PC 0x21db +DEBUG azoth_core::validator: [288] PC 0x21e5 +DEBUG azoth_core::validator: [289] PC 0x21f6 +DEBUG azoth_core::validator: [290] PC 0x2207 +DEBUG azoth_core::validator: [291] PC 0x2218 +DEBUG azoth_core::validator: [292] PC 0x2229 +DEBUG azoth_core::validator: [293] PC 0x2233 +DEBUG azoth_core::validator: [294] PC 0x2240 +DEBUG azoth_core::validator: [295] PC 0x2251 +DEBUG azoth_core::validator: [296] PC 0x225b +DEBUG azoth_core::validator: [297] PC 0x2266 +DEBUG azoth_core::validator: [298] PC 0x2277 +DEBUG azoth_core::validator: [299] PC 0x2291 +DEBUG azoth_core::validator: [300] PC 0x22aa +DEBUG azoth_core::validator: [301] PC 0x22b1 +DEBUG azoth_core::validator: [302] PC 0x22ce +DEBUG azoth_core::validator: [303] PC 0x22d8 +DEBUG azoth_core::validator: [304] PC 0x22db +DEBUG azoth_core::validator: [305] PC 0x22ef +DEBUG azoth_core::validator: [306] PC 0x2305 +DEBUG azoth_core::validator: [307] PC 0x230c +DEBUG azoth_core::validator: [308] PC 0x2318 +DEBUG azoth_core::validator: [309] PC 0x231f +DEBUG azoth_core::validator: [310] PC 0x2333 +DEBUG azoth_core::validator: [311] PC 0x2338 +DEBUG azoth_core::validator: [312] PC 0x2349 +DEBUG azoth_core::validator: [313] PC 0x234c +DEBUG azoth_core::validator: [314] PC 0x2364 +DEBUG azoth_core::validator: [315] PC 0x237e +DEBUG azoth_core::validator: [316] PC 0x238a +DEBUG azoth_core::validator: [317] PC 0x2391 +DEBUG azoth_core::validator: [318] PC 0x23b1 +DEBUG azoth_core::validator: [319] PC 0x23b8 +DEBUG azoth_core::validator: [320] PC 0x23c0 +DEBUG azoth_core::validator: [321] PC 0x2481 +DEBUG azoth_core::validator: [322] PC 0x2488 +DEBUG azoth_core::validator: [323] PC 0x251e +DEBUG azoth_core::validator: [324] PC 0x2542 +DEBUG azoth_core::validator: [325] PC 0x254a +DEBUG azoth_core::validator: [326] PC 0x2565 +DEBUG azoth_core::validator: [327] PC 0x2584 +DEBUG azoth_core::validator: [328] PC 0x2589 +DEBUG azoth_core::validator: [329] PC 0x258d +DEBUG azoth_core::validator: [330] PC 0x2590 +DEBUG azoth_core::validator: [331] PC 0x25a2 +DEBUG azoth_core::validator: [332] PC 0x25b4 +DEBUG azoth_core::validator: [333] PC 0x25b9 +DEBUG azoth_core::validator: [334] PC 0x25c0 +DEBUG azoth_core::validator: [335] PC 0x25e1 +DEBUG azoth_core::validator: [336] PC 0x25ee +DEBUG azoth_core::validator: [337] PC 0x260c +DEBUG azoth_core::validator: [338] PC 0x2613 +DEBUG azoth_core::validator: [339] PC 0x261d +DEBUG azoth_core::validator: [340] PC 0x262f +DEBUG azoth_core::validator: [341] PC 0x263f +DEBUG azoth_core::validator: [342] PC 0x2648 +DEBUG azoth_core::validator: [343] PC 0x2654 +DEBUG azoth_core::validator: [344] PC 0x265f +DEBUG azoth_core::validator: [345] PC 0x2678 +DEBUG azoth_core::validator: [346] PC 0x268c +DEBUG azoth_core::validator: [347] PC 0x2698 +DEBUG azoth_core::validator: [348] PC 0x26b1 +DEBUG azoth_core::validator: [349] PC 0x26b6 +DEBUG azoth_core::validator: [350] PC 0x26c0 +DEBUG azoth_core::validator: [351] PC 0x26c7 +DEBUG azoth_core::validator: [352] PC 0x2710 +DEBUG azoth_core::validator: [353] PC 0x2717 +DEBUG azoth_core::validator: [354] PC 0x275c +DEBUG azoth_core::validator: [355] PC 0x2763 +DEBUG azoth_core::validator: [356] PC 0x279f +DEBUG azoth_core::validator: [357] PC 0x27ca +DEBUG azoth_core::validator: [358] PC 0x27d2 +DEBUG azoth_core::validator: [359] PC 0x27e7 +DEBUG azoth_core::validator: [360] PC 0x280b +DEBUG azoth_core::validator: [361] PC 0x280d +DEBUG azoth_core::validator: [362] PC 0x2818 +DEBUG azoth_core::validator: [363] PC 0x2826 +DEBUG azoth_core::validator: [364] PC 0x283b +DEBUG azoth_core::validator: [365] PC 0x2841 +DEBUG azoth_core::validator: [366] PC 0x284e +DEBUG azoth_core::validator: [367] PC 0x2854 +DEBUG azoth_core::validator: [368] PC 0x2860 +DEBUG azoth_core::validator: [369] PC 0x2870 +DEBUG azoth_core::validator: [370] PC 0x2889 +DEBUG azoth_core::validator: [371] PC 0x28a4 +DEBUG azoth_core::validator: [372] PC 0x28ae +DEBUG azoth_core::validator: [373] PC 0x28b1 +DEBUG azoth_core::validator: [374] PC 0x28c4 +DEBUG azoth_core::validator: [375] PC 0x28da +DEBUG azoth_core::validator: [376] PC 0x28e0 +DEBUG azoth_core::validator: [377] PC 0x28ec +DEBUG azoth_core::validator: [378] PC 0x28f3 +DEBUG azoth_core::validator: [379] PC 0x2907 +DEBUG azoth_core::validator: [380] PC 0x290b +DEBUG azoth_core::validator: [381] PC 0x291c +DEBUG azoth_core::validator: [382] PC 0x291f +DEBUG azoth_core::validator: [383] PC 0x2936 +DEBUG azoth_core::validator: [384] PC 0x2950 +DEBUG azoth_core::validator: [385] PC 0x295c +DEBUG azoth_core::validator: [386] PC 0x2963 +DEBUG azoth_core::validator: [387] PC 0x2983 +DEBUG azoth_core::validator: [388] PC 0x2989 +DEBUG azoth_core::validator: [389] PC 0x2991 +DEBUG azoth_core::validator: [390] PC 0x299d +DEBUG azoth_core::validator: [391] PC 0x29a7 +DEBUG azoth_core::validator: [392] PC 0x29aa +DEBUG azoth_core::validator: [393] PC 0x29b8 +DEBUG azoth_core::validator: [394] PC 0x29cb +DEBUG azoth_core::validator: [395] PC 0x29d7 +DEBUG azoth_core::validator: [396] PC 0x29de +DEBUG azoth_core::validator: [397] PC 0x29e1 +DEBUG azoth_core::validator: [398] PC 0x29f4 +DEBUG azoth_core::validator: [399] PC 0x2a0f +DEBUG azoth_core::validator: [400] PC 0x2a14 +DEBUG azoth_core::validator: [401] PC 0x2a2a +DEBUG azoth_core::validator: [402] PC 0x2a38 +DEBUG azoth_core::validator: [403] PC 0x2a4e +DEBUG azoth_core::validator: [404] PC 0x2a57 +DEBUG azoth_core::validator: [405] PC 0x2a6b +DEBUG azoth_core::validator: [406] PC 0x2a75 +DEBUG azoth_core::validator: [407] PC 0x2a7b +DEBUG azoth_core::validator: [408] PC 0x2a8a +DEBUG azoth_core::validator: [409] PC 0x2a96 +DEBUG azoth_core::validator: [410] PC 0x2a9e +DEBUG azoth_core::validator: [411] PC 0x2aa4 +DEBUG azoth_core::validator: [412] PC 0x2ab1 +DEBUG azoth_core::validator: [413] PC 0x2ab7 +DEBUG azoth_core::validator: [414] PC 0x2ad5 +DEBUG azoth_core::validator: [415] PC 0x2ae0 +DEBUG azoth_core::validator: [416] PC 0x2ae7 +DEBUG azoth_core::validator: [417] PC 0x2af1 +DEBUG azoth_core::validator: [418] PC 0x2af9 +DEBUG azoth_core::validator: [419] PC 0x2b0a +DEBUG azoth_core::validator: [420] PC 0x2b1b +DEBUG azoth_core::validator: [421] PC 0x2b34 +DEBUG azoth_core::validator: [422] PC 0x2b3b +DEBUG azoth_core::validator: [423] PC 0x2b43 +DEBUG azoth_core::validator: [424] PC 0x2b57 +DEBUG azoth_core::validator: [425] PC 0x2b63 +DEBUG azoth_core::validator: [426] PC 0x2b70 +DEBUG azoth_core::validator: [427] PC 0x2b7e +DEBUG azoth_core::validator: [428] PC 0x2b9a +DEBUG azoth_core::validator: [429] PC 0x2ba0 +DEBUG azoth_core::validator: [430] PC 0x2bb0 +DEBUG azoth_core::validator: [431] PC 0x2bb4 +DEBUG azoth_core::validator: [432] PC 0x2bc9 +DEBUG azoth_core::validator: [433] PC 0x2bea +DEBUG azoth_core::validator: [434] PC 0x2bf4 +DEBUG azoth_core::validator: [435] PC 0x2bff +DEBUG azoth_core::validator: [436] PC 0x2c13 +DEBUG azoth_core::validator: [437] PC 0x2c1f +DEBUG azoth_core::validator: [438] PC 0x2c28 +DEBUG azoth_core::validator: [439] PC 0x2c31 +DEBUG azoth_core::validator: [440] PC 0x2c43 +DEBUG azoth_core::validator: [441] PC 0x2c62 +DEBUG azoth_core::validator: [442] PC 0x2c6b +DEBUG azoth_core::validator: [443] PC 0x2c7c +DEBUG azoth_core::validator: [444] PC 0x2c85 +DEBUG azoth_core::validator: [445] PC 0x2c93 +DEBUG azoth_core::validator: [446] PC 0x2ca8 +DEBUG azoth_core::validator: [447] PC 0x2cb6 +DEBUG azoth_core::validator: [448] PC 0x2cb9 +DEBUG azoth_core::validator: [449] PC 0x2ccb +DEBUG azoth_core::validator: [450] PC 0x2ce1 +DEBUG azoth_core::validator: [451] PC 0x2ced +DEBUG azoth_core::validator: [452] PC 0x2cf4 +DEBUG azoth_core::validator: [453] PC 0x2d60 +DEBUG azoth_core::validator: [454] PC 0x2d67 +DEBUG azoth_core::validator: [455] PC 0x2da1 +DEBUG azoth_core::validator: [456] PC 0x2da8 +DEBUG azoth_core::validator: [457] PC 0x2e99 +DEBUG azoth_core::validator: [458] PC 0x2ea0 +DEBUG azoth_core::validator: [459] PC 0x2f52 +DEBUG azoth_core::validator: [460] PC 0x2f59 +DEBUG azoth_core::validator: [461] PC 0x2f95 +DEBUG azoth_core::validator: [462] PC 0x2f9c +DEBUG azoth_core::validator: [463] PC 0x2fe1 +DEBUG azoth_core::validator: [464] PC 0x305b +DEBUG azoth_core::validator: [465] PC 0x3063 +DEBUG azoth_core::validator: [466] PC 0x306a +DEBUG azoth_core::validator: [467] PC 0x308e +DEBUG azoth_core::validator: [468] PC 0x3096 +DEBUG azoth_core::validator: [469] PC 0x309c +DEBUG azoth_core::validator: [470] PC 0x30a3 +DEBUG azoth_core::validator: [471] PC 0x30aa +DEBUG azoth_core::validator: [472] PC 0x30b1 +DEBUG azoth_core::validator: [473] PC 0x30bd +DEBUG azoth_core::validator: [474] PC 0x30d0 +DEBUG azoth_core::validator: [475] PC 0x30d7 +DEBUG azoth_core::validator: [476] PC 0x30dd +DEBUG azoth_core::validator: [477] PC 0x30ec +DEBUG azoth_core::validator: [478] PC 0x30f0 +DEBUG azoth_core::validator: [479] PC 0x3112 +DEBUG azoth_core::validator: [480] PC 0x311b +DEBUG azoth_core::validator: [481] PC 0x312a +DEBUG azoth_core::validator: [482] PC 0x312f +DEBUG azoth_core::validator: [483] PC 0x3139 +DEBUG azoth_core::validator: [484] PC 0x3146 +DEBUG azoth_core::validator: [485] PC 0x3156 +DEBUG azoth_core::validator: [486] PC 0x316d +DEBUG azoth_core::validator: [487] PC 0x3188 +DEBUG azoth_core::validator: [488] PC 0x319f +DEBUG azoth_core::validator: [489] PC 0x31a5 +DEBUG azoth_core::validator: [490] PC 0x31bc +DEBUG azoth_core::validator: [491] PC 0x31cb +DEBUG azoth_core::validator: [492] PC 0x31e4 +DEBUG azoth_core::validator: [493] PC 0x31ea +DEBUG azoth_core::validator: [494] PC 0x31f4 +DEBUG azoth_core::validator: [495] PC 0x320d +DEBUG azoth_core::validator: [496] PC 0x321a +DEBUG azoth_core::validator: [497] PC 0x3220 +DEBUG azoth_core::validator: [498] PC 0x3237 +DEBUG azoth_core::validator: [499] PC 0x3246 +DEBUG azoth_core::validator: [500] PC 0x325f +DEBUG azoth_core::validator: [501] PC 0x3269 +DEBUG azoth_core::validator: [502] PC 0x3280 +DEBUG azoth_core::validator: [503] PC 0x3299 +DEBUG azoth_core::validator: [504] PC 0x329e +DEBUG azoth_core::validator: [505] PC 0x32a3 +DEBUG azoth_core::validator: [506] PC 0x32b8 +DEBUG azoth_core::validator: [507] PC 0x32bc +DEBUG azoth_core::validator: [508] PC 0x32de +DEBUG azoth_core::validator: [509] PC 0x32e7 +DEBUG azoth_core::validator: [510] PC 0x32f7 +DEBUG azoth_core::validator: [511] PC 0x3306 +DEBUG azoth_core::validator: [512] PC 0x3310 +DEBUG azoth_core::validator: [513] PC 0x3326 +DEBUG azoth_core::validator: [514] PC 0x3337 +DEBUG azoth_core::validator: [515] PC 0x3343 +DEBUG azoth_core::validator: [516] PC 0x334a +DEBUG azoth_core::validator: [517] PC 0x334f +DEBUG azoth_core::validator: [518] PC 0x3360 +DEBUG azoth_core::validator: [519] PC 0x3365 +DEBUG azoth_core::validator: [520] PC 0x3368 +DEBUG azoth_core::validator: [521] PC 0x338a +DEBUG azoth_core::validator: [522] PC 0x3399 +DEBUG azoth_core::validator: [523] PC 0x339e +DEBUG azoth_core::validator: [524] PC 0x33b4 +DEBUG azoth_core::validator: [525] PC 0x33c6 +DEBUG azoth_core::validator: [526] PC 0x33cd +DEBUG azoth_core::validator: [527] PC 0x33cf +DEBUG azoth_core::validator: [528] PC 0x33dd +DEBUG azoth_core::validator: [529] PC 0x33e7 +DEBUG azoth_core::validator: [530] PC 0x33ee +DEBUG azoth_core::validator: [531] PC 0x3404 +DEBUG azoth_core::validator: [532] PC 0x340a +DEBUG azoth_core::validator: [533] PC 0x3427 +DEBUG azoth_core::validator: [534] PC 0x342d +DEBUG azoth_core::validator: [535] PC 0x3433 +DEBUG azoth_core::validator: [536] PC 0x3448 +DEBUG azoth_core::validator: [537] PC 0x3457 +DEBUG azoth_core::validator: [538] PC 0x345f +DEBUG azoth_core::validator: [539] PC 0x3477 +DEBUG azoth_core::validator: [540] PC 0x347d +DEBUG azoth_core::validator: [541] PC 0x3486 +DEBUG azoth_core::validator: [542] PC 0x348d +DEBUG azoth_core::validator: [543] PC 0x34ab +DEBUG azoth_core::validator: [544] PC 0x34ba +DEBUG azoth_core::validator: [545] PC 0x34ff +DEBUG azoth_core::validator: [546] PC 0x350a +DEBUG azoth_core::validator: [547] PC 0x351b +DEBUG azoth_core::validator: [548] PC 0x3535 +DEBUG azoth_core::validator: [549] PC 0x3552 +DEBUG azoth_core::validator: [550] PC 0x355c +DEBUG azoth_core::validator: [551] PC 0x355f +DEBUG azoth_core::validator: [552] PC 0x3573 +DEBUG azoth_core::validator: [553] PC 0x3589 +DEBUG azoth_core::validator: [554] PC 0x3595 +DEBUG azoth_core::validator: [555] PC 0x359c +DEBUG azoth_core::validator: [556] PC 0x35b0 +DEBUG azoth_core::validator: [557] PC 0x35b5 +DEBUG azoth_core::validator: [558] PC 0x35c6 +DEBUG azoth_core::validator: [559] PC 0x35c9 +DEBUG azoth_core::validator: [560] PC 0x35e1 +DEBUG azoth_core::validator: [561] PC 0x35fb +DEBUG azoth_core::validator: [562] PC 0x3607 +DEBUG azoth_core::validator: [563] PC 0x360e +DEBUG azoth_core::validator: [564] PC 0x362e +DEBUG azoth_core::validator: [565] PC 0x3636 +DEBUG azoth_core::validator: [566] PC 0x36aa +DEBUG azoth_core::validator: [567] PC 0x36ac +DEBUG azoth_core::validator: [568] PC 0x36ba +DEBUG azoth_core::validator: [569] PC 0x36bf +DEBUG azoth_core::validator: [570] PC 0x36c1 +DEBUG azoth_core::validator: [571] PC 0x36ce +DEBUG azoth_core::validator: [572] PC 0x36d3 +DEBUG azoth_core::validator: [573] PC 0x36d5 +DEBUG azoth_core::validator: [574] PC 0x36e3 +DEBUG azoth_core::validator: [575] PC 0x36e8 +DEBUG azoth_core::validator: [576] PC 0x36ea +DEBUG azoth_core::validator: [577] PC 0x36f7 +DEBUG azoth_core::validator: [578] PC 0x36fc +DEBUG azoth_core::validator: [579] PC 0x36fe +DEBUG azoth_core::validator: [580] PC 0x370b +DEBUG azoth_core::validator: [581] PC 0x3710 +DEBUG azoth_core::validator: [582] PC 0x3712 +DEBUG azoth_core::validator: [583] PC 0x3720 +DEBUG azoth_core::validator: [584] PC 0x3725 +DEBUG azoth_core::validator: [585] PC 0x3727 +DEBUG azoth_core::validator: [586] PC 0x3735 +DEBUG azoth_core::validator: [587] PC 0x373a +DEBUG azoth_core::validator: [588] PC 0x373c +DEBUG azoth_core::validator: [589] PC 0x374a +DEBUG azoth_core::validator: [590] PC 0x374f +DEBUG azoth_core::validator: [591] PC 0x3751 +DEBUG azoth_core::validator: [592] PC 0x375f +DEBUG azoth_core::validator: [593] PC 0x3764 +DEBUG azoth_core::validator: [594] PC 0x3766 +DEBUG azoth_core::validator: [595] PC 0x3774 +DEBUG azoth_core::validator: [596] PC 0x3779 +DEBUG azoth_core::validator: [597] PC 0x377b +DEBUG azoth_core::validator: [598] PC 0x3789 +DEBUG azoth_core::validator: [599] PC 0x378e +DEBUG azoth_core::validator: [600] PC 0x3790 +DEBUG azoth_core::validator: [601] PC 0x379e +DEBUG azoth_core::validator: [602] PC 0x37a3 +DEBUG azoth_core::validator: [603] PC 0x37a5 +DEBUG azoth_core::validator: [604] PC 0x37b3 +DEBUG azoth_core::validator: [605] PC 0x37b8 +DEBUG azoth_core::validator: [606] PC 0x37ba +DEBUG azoth_core::validator: [607] PC 0x37c7 +DEBUG azoth_core::validator: [608] PC 0x37cc +DEBUG azoth_core::validator: [609] PC 0x37ce +DEBUG azoth_core::validator: [610] PC 0x37dc +DEBUG azoth_core::validator: [611] PC 0x37e1 +DEBUG azoth_core::validator: [612] PC 0x37e3 +DEBUG azoth_core::validator: [613] PC 0x37f1 +DEBUG azoth_core::validator: [614] PC 0x37f6 +DEBUG azoth_core::validator: [615] PC 0x37f8 +DEBUG azoth_core::validator: [616] PC 0x3806 +DEBUG azoth_core::validator: [617] PC 0x380b +DEBUG azoth_core::validator: [618] PC 0x380d +DEBUG azoth_core::validator: [619] PC 0x381b +DEBUG azoth_core::validator: [620] PC 0x3820 +DEBUG azoth_core::validator: [621] PC 0x3822 +DEBUG azoth_core::validator: [622] PC 0x382f +DEBUG azoth_core::validator: [623] PC 0x3834 +DEBUG azoth_core::validator: [624] PC 0x3846 +DEBUG azoth_core::validator: [625] PC 0x3858 +DEBUG azoth_core::validator: [626] PC 0x385d +DEBUG azoth_core::validator: [627] PC 0x386f +DEBUG azoth_core::validator: [628] PC 0x3881 +DEBUG azoth_core::validator: [629] PC 0x3886 +DEBUG azoth_core::validator: [630] PC 0x3898 +DEBUG azoth_core::validator: [631] PC 0x38aa +DEBUG azoth_core::validator: [632] PC 0x38af +DEBUG azoth_core::validator: [633] PC 0x38c1 +DEBUG azoth_core::validator: [634] PC 0x38d3 +DEBUG azoth_core::validator: [635] PC 0x38d8 +DEBUG azoth_core::validator: [636] PC 0x38ea +DEBUG azoth_core::validator: [637] PC 0x38fc +DEBUG azoth_core::validator: [638] PC 0x3901 +DEBUG azoth_core::validator: [639] PC 0x3913 +DEBUG azoth_core::validator: [640] PC 0x3925 +DEBUG azoth_core::validator: [641] PC 0x392a +DEBUG azoth_core::validator: [642] PC 0x393c +DEBUG azoth_core::validator: [643] PC 0x394e +DEBUG azoth_core::validator: [644] PC 0x3953 +DEBUG azoth_core::validator: [645] PC 0x3965 +DEBUG azoth_core::validator: [646] PC 0x3977 +DEBUG azoth_core::validator: [647] PC 0x397c +DEBUG azoth_core::validator: [648] PC 0x398e +DEBUG azoth_core::validator: [649] PC 0x39a0 +DEBUG azoth_core::validator: [650] PC 0x39a5 +DEBUG azoth_transform::obfuscator: Jump validation passed +DEBUG azoth_transform::obfuscator: Appending 512 bytes of arithmetic chain data section to runtime +DEBUG azoth_transform::obfuscator: Runtime bytecode size with data section: 15287 bytes +DEBUG azoth_core::strip: reassemble: original_runtime_len=10975, new_runtime_len=15287 +DEBUG azoth_core::strip: Runtime length changed from 10975 to 15287 bytes, updating init code +DEBUG azoth_core::strip: update_init_code_size called: new_runtime_len=15287, clean_len=10975 +DEBUG azoth_core::strip: Calculated values: runtime_offset=751, post_runtime_len=53, runtime_tail_len=15340, original_runtime_tail_len=11028 +DEBUG azoth_core::strip: Init code size: 751 bytes, runtime offset: 751 +DEBUG azoth_core::strip: Full init code (hex): 61012080604052346101a05760a081612e03803803809161002082856102a3565b8339810103126101a057610033816102da565b90610040602082016102da565b604082015190608060608401519301519360a05260c05260e052336080526101008052801580158061029a575b6100ee575b604051612b1490816102ef823960805181818161015a01528181610272015281816103c401526105f5015260a05181818161031001528181610517015281816106a001526108ee015260c0518181816104160152610933015260e0518181816101d7015261091101526101005181818161075e015261081e0152f35b60ff60075460081c16610255576102105781156101cb57805f55806002558160015560018060a01b0360a051169181018091116101b7575f91606460209260405194859384926323b872dd60e01b845233600485015230602485015260448401525af180156101ac57610174575b5061010061ff001960075416176007555f8080610072565b6020813d6020116101a4575b8161018d602093836102a3565b810103126101a05751801515811461015c575b5f80fd5b3d9150610180565b6040513d5f823e3d90fd5b634e487b7160e01b5f52601160045260245ffd5b60405162461bcd60e51b815260206004820152601f60248201527f5061796d656e7420616d6f756e74206d757374206265206e6f6e2d7a65726f006044820152606490fd5b60405162461bcd60e51b815260206004820152601e60248201527f52657761726420616d6f756e74206d757374206265206e6f6e2d7a65726f00006044820152606490fd5b60405162461bcd60e51b815260206004820152601760248201527f436f6e747261637420616c72656164792066756e6465640000000000000000006044820152606490fd5b5082151561006d565b601f909101601f19168101906001600160401b038211908210176102c657604052565b634e487b7160e01b5f52604160045260245ffd5b51906001600160a01b03821682036101a05756fe +DEBUG azoth_core::strip: Init code structure: offsets 16-24: [2e, 03, 80, 38, 03, 80, 91, 61, 00] +DEBUG azoth_core::strip: Updated CODECOPY length PUSH at 0x76 to 0x3bec +DEBUG azoth_core::strip: Updated total bytecode size PUSH at 0xf to 0x3edb + WARN azoth_core::strip: Targeted init code patching failed: Could not find RETURN length PUSH to update + WARN azoth_core::strip: Will attempt fallback patching during reassembly +DEBUG azoth_core::strip: Runtime size changed - using sequential reassembly: prefix + runtime + suffix +DEBUG azoth_core::strip: Original runtime started at offset 751, preserving prefix structure +DEBUG azoth_core::strip: Added pre-runtime Init section: 751 bytes (original offset: 0) +DEBUG azoth_core::strip: Added runtime code: 15287 bytes +DEBUG azoth_core::strip: Added post-runtime Auxdata section: 53 bytes (original offset: 11726) +DEBUG azoth_core::strip: Sequential reassembly complete: 16091 bytes total +DEBUG azoth_transform::obfuscator: Bytecode comparison: +DEBUG azoth_transform::obfuscator: Original size: 11779 bytes +DEBUG azoth_transform::obfuscator: Final size: 16091 bytes +DEBUG azoth_transform::obfuscator: Bytecode actually changed: true +DEBUG azoth_transform::obfuscator: Gas analysis breakdown: +DEBUG azoth_transform::obfuscator: Original: 571 zeros, 11208 non-zeros +DEBUG azoth_transform::obfuscator: Obfuscated: 830 zeros, 15261 non-zeros +DEBUG azoth_transform::obfuscator: Original gas: 202612 +DEBUG azoth_transform::obfuscator: Obfuscated gas: 268496 +DEBUG azoth_transform::obfuscator: Gas delta: +65884 +DEBUG azoth_transform::obfuscator: === Building ObfuscationResult === +DEBUG azoth_transform::obfuscator: Selector mapping has 19 entries: +DEBUG azoth_transform::obfuscator: Selector 0x81972d00 -> Token 0x9bbfb1f4 +DEBUG azoth_transform::obfuscator: Selector 0x8677ab23 -> Token 0x2dd1abc1 +DEBUG azoth_transform::obfuscator: Selector 0xd415b3f9 -> Token 0x569bee5a +DEBUG azoth_transform::obfuscator: Selector 0x8bd03d0a -> Token 0x1a6ea280 +DEBUG azoth_transform::obfuscator: Selector 0xa65e2cfd -> Token 0xe224c59d +DEBUG azoth_transform::obfuscator: Selector 0x9940686e -> Token 0x994049e6 +DEBUG azoth_transform::obfuscator: Selector 0x046f7da2 -> Token 0xae6e97f9 +DEBUG azoth_transform::obfuscator: Selector 0x3ccfd60b -> Token 0x0ca2d6c9 +DEBUG azoth_transform::obfuscator: Selector 0xcb766a56 -> Token 0x1ce46a9e +DEBUG azoth_transform::obfuscator: Selector 0x33ee5f35 -> Token 0x4020961c +DEBUG azoth_transform::obfuscator: Selector 0xd4899a62 -> Token 0xd4162d29 +DEBUG azoth_transform::obfuscator: Selector 0x308657d7 -> Token 0x306ed7ee +DEBUG azoth_transform::obfuscator: Selector 0x5a4fd645 -> Token 0x753a624f +DEBUG azoth_transform::obfuscator: Selector 0xede7f6a3 -> Token 0xe1be5dbb +DEBUG azoth_transform::obfuscator: Selector 0x2feef2ec -> Token 0xac5a2ffa +DEBUG azoth_transform::obfuscator: Selector 0x1aa7c0ec -> Token 0xa8abc0a3 +DEBUG azoth_transform::obfuscator: Selector 0x80f323a7 -> Token 0x80f130e7 +DEBUG azoth_transform::obfuscator: Selector 0xf3a504f2 -> Token 0x0f9c0474 +DEBUG azoth_transform::obfuscator: Selector 0xfe03a460 -> Token 0x395ec66a +✓ Contract obfuscated (11779 -> 16091 bytes, +36.6%) +✓ Extracted 19 selector mappings +Selectors found: + 0x81972d00 -> 0x9bbfb1f4 + 0x8677ab23 -> 0x2dd1abc1 + 0xd415b3f9 -> 0x569bee5a + 0x8bd03d0a -> 0x1a6ea280 + 0xa65e2cfd -> 0xe224c59d + 0x9940686e -> 0x994049e6 + 0x046f7da2 -> 0xae6e97f9 + 0x3ccfd60b -> 0x0ca2d6c9 + 0xcb766a56 -> 0x1ce46a9e + 0x33ee5f35 -> 0x4020961c + 0xd4899a62 -> 0xd4162d29 + 0x308657d7 -> 0x306ed7ee + 0x5a4fd645 -> 0x753a624f + 0xede7f6a3 -> 0xe1be5dbb + 0x2feef2ec -> 0xac5a2ffa + 0x1aa7c0ec -> 0xa8abc0a3 + 0x80f323a7 -> 0x80f130e7 + 0xf3a504f2 -> 0x0f9c0474 + 0xfe03a460 -> 0x395ec66a +✓ Created EscrowMappings with obfuscated tokens + +=== Deployment Result Details === + Status: SUCCESS + Gas used: 3374762 + State changes: 3 accounts modified + touched 0xD1f176B2a6780571094fBB18B02b39D8b8dEeC37 -> nonce=1, balance=0, storage=0, code_len=15340 + touched 0x0000000000000000000000000000000000000000 -> nonce=0, balance=0, storage=0, code_len=0 + touched 0x4242424242424242424242424242424242424242 -> nonce=1, balance=1000000000000000000, storage=0, code_len=0 +✓ Obfuscated contract deployed at: 0xD1f176B2a6780571094fBB18B02b39D8b8dEeC37 + +=== Validating Deployed Bytecode === +DEBUG heimdall_disassembler::core: fetching target bytecode took 1.338008ms +DEBUG heimdall_disassembler::core: disassembly took 4.339403ms + INFO heimdall_disassembler::core: disassembled 15341 bytes successfully +DEBUG heimdall_disassembler::core: disassembly took 5.720223ms + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x39c5, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x39c6, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x39cb, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x39d1, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x39d6, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x39d9, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x39de, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x39e4, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x39e5, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x39e6, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a15, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a16, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a33, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a41, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a42, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a44, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a58, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a5c, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a65, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a6d, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a6f, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a75, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a93, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a95, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3ac2, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3ac8, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3ad3, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3ad5, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b0b, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b0c, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b0f, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b17, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b18, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b1f, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b20, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b29, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b2a, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b2b, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b2d, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b33, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b34, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b35, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b6f, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b71, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b72, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b96, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3bbe, using INVALID as placeholder (byte will be recovered from original during encode) + WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3be9, using INVALID as placeholder (byte will be recovered from original during encode) +Obfuscated deployed bytecode has 651 JUMPDESTs +Obfuscated deployed bytecode jump statistics: + Total jumps: 664 + Valid jumps: 664 + Invalid jumps: 0 +✓ All PUSH+JUMP pairs target valid JUMPDESTs + + Calldata (obfuscated): 0x1ce46a9e +Call result: Ok(ExecResultAndState { result: Success { reason: Return, gas_used: 23763, gas_refunded: 0, logs: [], output: Call(0x0000000000000000000000000000000000000000000000000000000000000000) }, state: {0x4242424242424242424242424242424242424242: Account { info: AccountInfo { balance: 1000000000000000000, nonce: 2, code_hash: 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470, code: Some(LegacyAnalyzed(LegacyAnalyzedBytecode { bytecode: 0x00, original_len: 0, jump_table: JumpTable { map: "" } })) }, transaction_id: 0, storage: {}, status: AccountStatus(Touched) }, 0xd1f176b2a6780571094fbb18b02b39d8b8deec37: Account { info: AccountInfo { balance: 0, nonce: 1, code_hash: 0x86fc342531db13c1156ebd279e096e07a8f81a9135b33efa6cab5f8c474d26c2, code: Some(LegacyAnalyzed(LegacyAnalyzedBytecode { bytecode: 0x60806040526004361015610011575f80fd5b5f3560e01c8063ae6e97f914613834578063a8abc0a314613846578063ac5a2ffa1461385d578063306ed7ee1461386f5780634020961c146138865780630ca2d6c914613898578063753a624f146138af57806380f130e7146138c15780639bbfb1f4146138d85780632dd1abc1146138ea5780631a6ea28014613901578063994049e614613913578063e224c59d1461392a5780631ce46a9e1461393c578063569bee5a14613953578063d4162d2914613965578063e1be5dbb1461397c5780630f9c04741461398e5763395ec66a146139a5575f80fd5b610a3b565b610a16565b610781565b610747565b61072a565b610706565b6105cb565b610462565b610445565b610401565b6103ae565b610391565b610375565b610239565b61021c565b6101fa565b6101c0565b610198565b34610194575f36600319011261019457610188337f00000000000000000000000042424242424242424242424242424242424242426001600160a01b031614610a58565b6007805460ff19169055005b5f80fd5b34610194575f366003190112610194576003546040516001600160a01b039091168152602090f35b34610194575f3660031901126101945760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b34610194575f36600319011261019457602060ff600754166040519015158152f35b34610194575f366003190112610194576020600454604051908152f35b34610194575f366003190112610194576102a1600161025e60075460ff9060081c1690565b61026781610aa4565b610299828060a01b037f0000000000000000000000004242424242424242424242424242424242424242163314610a58565b151514610b1f565b6102a9611739565b61030b60206102bd60015460025490610cfb565b6102cd61ff001960075416600755565b6102d65f600155565b5f80556102e4811515610d08565b60405163a9059cbb60e01b8152336004820152602481019190915291829081906044820190565b03815f7f00000000000000000000000011111111111111111111111111111111111111116001600160a01b03165af180156103705761034657005b6103679060203d602011610369575b61035f8183610d67565b810190610d8e565b005b503d610355565b610da6565b34610194575f3660031901126101945760205f54604051908152f35b34610194575f366003190112610194576020600554604051908152f35b34610194575f366003190112610194576103f2337f00000000000000000000000042424242424242424242424242424242424242426001600160a01b031614610a58565b6007805460ff19166001179055005b34610194575f366003190112610194576040517f00000000000000000000000022222222222222222222222222222222222222226001600160a01b03168152602090f35b34610194575f366003190112610194576020600154604051908152f35b34610194576020366003190112610194576004356104a76104a261049e6007546104986104938260ff9060081c1690565b610aa4565b60ff1690565b1590565b610db1565b5f546104be6104b68260011c90565b831015610df6565b60045480151590816105c1575b5061058f575b506104e56104e061049e611172565b610e9f565b6040516323b872dd60e01b815233600482015230602482015260448101829052906020826064815f6001600160a01b037f0000000000000000000000001111111111111111111111111111111111111111165af19182156103705761036792610572575b50600380546001600160a01b0319163317905561056d61056842610ccb565b600455565b600555565b61058a9060203d6020116103695761035f8183610d67565b610549565b60055461059b91610cfb565b5f556105b36105ae600554600654610cfb565b600655565b6105bb611739565b5f6104d1565b905042115f6104cb565b346101945760403660031901126101945761065a60243561065560043561061c6001600160a01b037f0000000000000000000000004242424242424242424242424242424242424242163314610a58565b61063761063261049e60075460ff9060081c1690565b610fe7565b610642811515611077565b61064d8315156110c3565b805f55600255565b600155565b61069b602061066e60025460015490610cfb565b6040516323b872dd60e01b8152336004820152306024820152604481019190915291829081906064820190565b03815f7f00000000000000000000000011111111111111111111111111111111111111116001600160a01b03165af18015610370576106e9575b61036761010061ff00196007541617600755565b6107019060203d6020116103695761035f8183610d67565b6106d5565b34610194575f366003190112610194576020610720611172565b6040519015158152f35b34610194575f366003190112610194576020600254604051908152f35b34610194575f3660031901126101945760206040517f00000000000000000000000000000000000000000000000000000000000001008152f35b346101945760403660031901126101945760043567ffffffffffffffff811161019457806004019060a06003198236030112610194576109ea9160209161095d61095860846108e6602435956107e061049360075460ff9060081c1690565b6003546001600160a01b03169661088d9033891480610a03575b6108039061118a565b61080f438211156111d5565b61084461081c824361123e565b7f0000000000000000000000000000000000000000000000000000000000000100101561124b565b6108748140610854811515611310565b610868610861868061135c565b36916113ab565b8c8151910120146113e1565b610887610881848061135c565b90611a19565b1461142d565b6108a061089a828061135c565b90611c2d565b906108e16108dc60248901936108b6858561135c565b9060648c6108d46108ca604483018a61135c565b939092018961135c565b949093611ce9565b611513565b61135c565b9190940135937f000000000000000000000000111111111111111111111111111111111111111180957f0000000000000000000000000000000000000000000000000000000000000000937f000000000000000000000000222222222222222222222222222222222222222293611e91565b611631565b61097761096e6005545f5490610cfb565b60015490610cfb565b600380546001600160a01b0319169055916109915f600555565b61099a5f600455565b6109aa61ff001960075416600755565b6109b35f600155565b5f80805560405163a9059cbb60e01b81526001600160a01b0390921660048301526024820193909352938492839182906044820190565b03926001600160a01b03165af180156103705761034657005b50610803610a0f611172565b90506107fa565b34610194575f36600319011261019457602060ff60075460081c166040519015158152f35b34610194575f366003190112610194576020600654604051908152f35b15610a5f57565b60405162461bcd60e51b815260206004820152601d60248201527fadb2e11b90c5bd4f35c7886e31b623316dbb327698940ddf17856be4f2aa9a036044820152606490fd5b15610aab57565b60405162461bcd60e51b81526020600482015260136024820152600061321660203960005167ed8ed47a17f9060718673cecbd313687c97518674a98a79091b2abac186717753d24d50737d5181863f726c5b5036330bb295a036361f7fd7a039003614d559003606a1b6044820152606490fd5b15610b2657565b60405162461bcd60e51b8152602060048201526037602482015260006132366020396000516000613256602039600051017f08228020212024103a24c0d04002832030081a805100019100c0e8954200004417600302616a8d186f1f10a20087de46a79e5aead386db0ebf016f62ac9df78db7876ec19fc4cf321b3430036ffe0c7379090734ecb8b5a798f446c96a036f4fc230ee4f775a6a450a07d29a0da89c030160448201527f10e5a42ca5d4250ac9312dcbc65ee6ff7882a5add19612eadb13e57f3c0fb850678e7f20391b10fd51016725ef6125332872a9016759da2a79555f57c901016370d06fb70363332081990363b21d1ffd016314535784019003600b02677bca71fa3c14b204186765d4766e9fe41601180161ec5290036724e922842da5f11c0167a5e4d6e6399e26a40167a47c6b3d9dce12a601187fd8ad2d894578f956c16e96a8e87688da4cf16c1d6016a9184a5222e63ab2083318637cfde2d201634e5459520163378023a10163f83ff6770190036064820152608490fd5b631e31fd4a1863fabd695a1863aac4ef611860e01b5f52601160045260245ffd5b9061012c8201809211610cda57565b610caa565b9060018201809211610cda57565b6001019081600111610cda57565b91908201809211610cda57565b15610d0f57565b60405162461bcd60e51b8152602060048201526015602482015274bff7f9f7c59907f97268de3b41dc8e19ffd710512560581b6044820152606490fd5b6351a87fa70363600f04e80360e01b5f52604160045260245ffd5b90601f8019910116810190811067ffffffffffffffff821117610d8957604052565b610d4c565b90816020910312610194575180151581036101945790565b6040513d5f823e3d90fd5b15610db857565b60405162461bcd60e51b815260206004820152601660248201527510d85b98d95b1b185d1a5bdb881c995c5d595cdd195960521b6044820152606490fd5b15610dfd57565b60405162461bcd60e51b815260206004820152602b60248201527ff8ca5fca02cd775cc0cc88c4ada13b63bc7e81259322bdad9fc1d8aba668ea6a7fdf7f7e74f9fff57b74317675e7f37d2d7ced63f3fde97f616ffe2afef7c92ded1660006132766020396000510160448201526aef17fe807e0bd0d15c04dc016ad5f700e98f2664b3681653036afb48a0fde6cd10c21692ec0360aa1b6064820152608490fd5b15610ea657565b60405162461bcd60e51b815260206004820152602260248201527f15cc1956c2cc20b556d2cacb6c6ac1105674e5a363d5be58c0c04447cc1cd9cc6ffe90cdec2f75531b29219d73116bc095186fe60a6c05ae73c7647e5104e0304e65d5186f4450f181e6f88981d639826f70020579186f7c49bac1fb2abf6a320641e8ac8815e618016fe2f53760ae9b3ecb3c2e50926cfa7b19016f82a5ff8598b80c3492a7c7c72ed8c403016fece8dbfd72bca90640adbc131c961a31036f0af9128dc6bc27d0ef21979973a52bef03186003026315434c2b1863ef6dd62e180160006132966020396000511760006132b6602039600051176f73bbfbca09d80b53fb5d2535e4172d3f016ffa976b454b4c498d68ac23c34641c9cc016f5a4f41cdcdd74c122e3d1d48f23ca54a0101604482015261195960f21b6064820152608490fd5b15610fee57565b60405162461bcd60e51b815260206004820152601760248201527f436f6e747261637420616c7265616479e31284bfcdb78fd8142b9c4454f0d90e6f4fc19089ddec2007f4634aa9fd24d91b186fd1f79b6194ffe11f5a462b83c19233a8186f5c9a04b92041eac0ba0efd694febc10b18900360006132d6602039600051186044820152606490fd5b1561107e57565b60405162461bcd60e51b815260206004820152601e60248201527f4c25e699040683bdada8e88c6721e7d56ecce32a09c8179e3caa3bc4e3c9b30b6044820152606490fd5b156110ca57565b60405162461bcd60e51b815260206004820152601f60248201527f0bf824597cf7ae83b4761f29f4faa57dc20e51731c6648c7a83f41c20890e03661ac5f900360039004616645016f534a8d0914ba721f9c1f2c9a85f6c31f186f1273008353f9c6508299a2d560199559186f9aeff55dd9a4f67868cd91eb8d398cd9186f93d99036a31c53543c1de9496d539fd318900360006132f6602039600051016044820152606490fd5b6004548015159081611182575090565b905042111590565b1561119157565b606460405162461bcd60e51b815260206004820152602060248201527f6f0b597464682658e6873e17a615424678100a96a72bebf59633b58695a810ed6044820152fd5b156111dc57565b60405162461bcd60e51b815260206004820152601d60248201527f7248126b9f7413b1dc7f599ba84d75feab7be5764800846fadf66a93dc6d5c176044820152606490fd5b600119810191908211610cda57565b5f19810191908211610cda57565b91908203918211610cda57565b1561125257565b60405162461bcd60e51b815260206004820152601460248201527f149c14eedc6737ac4733a63fa476c41b6cd68f961acdb68ced1a533b310c8ccd619b8b18619c1a90036180f1016007027f6f49dbf72418ef9acbfe3063ddbd7fddfdffebffdbdbffffdfdb8eef5beda67f1667b09b6550b0b3111c01674a5927193ab4165e0367f59b28ea0024a36c03016001027ff8bd4d7c3aaf7a463892cddeb7dafddbdd7d0e18db7fd8fbfb5dfbffeeffdf7b1660621b6044820152606490fd5b1561131757565b60405162461bcd60e51b815260206004820152601d60248201527fc3e041838ba15e22480485b133cd0fa565535066fb619fb5ac895f1f9373ed106044820152606490fd5b903590601e1981360301821215610194570180359067ffffffffffffffff82116101945760200191813603831361019457565b67ffffffffffffffff8111610d8957601f01601f191660200190565b929192610fee8261138f565b91610ffc6040519384610d67565b829481845281830111610194578281602093845f960137010152565b156113e857565b60405162461bcd60e51b815260206004820152601a60248201527fabc6b3c4e91a2980fe57ea86f4c6d8d3843053e089adb6678e944ba7e0c31c526044820152606490fd5b1561143457565b60405162461bcd60e51b815260206004820152601c60248201527ffe6729b2cc82f9a3078d07cde28d0463bf8e9a28af78ae6a3949c53a6fcb35f67f6b8944fa13fd55fc397c692325f2da106d408f96c4ad4085dc9b92f083a0460c18600190047fb8fbebb7f577eedfd2a40fe7dddbf2fff6671fe3abffcdef7ff7ffffa7ffbff0166380d43b2901634487b0660190036390d78e9b1863e07a73f41863be76adcf1863524da39b1890037fd88f0864b0058c3d7ecf6d8de535a71eb023678246bcbf8204a634a14278e54818617e2f1861ce41186044820152606490fd5b1561151a57565b60405162461bcd60e51b815260206004820152601960248201527fd67e1fd60c59571887de9092cd995182a02b0621672578e76a66e56db420d4ec67a4d05a72816e467b01679cc28303eed2703d0367243c8c1bb5f0418003016fcb7aa8948e9e0a8892083c229d4ab7a3186f43ac4d32a18e2b952ff0feaaf3c1cac51890037fafc5a06bd7b668e76c086f2d617ae779eaaade0553ea18343790db47dc96417f187f7febfffddbdf7ffffff6fe37beffaffefffffe6feff6df7dbfe7f47dfeffffbf167ffaebfa7eeeffffaff9d7f7bdd91ddf9fffffff7d7dfddbce2f7ff5ac7fd69e3a167f2f3d43db5e65db8f777192d01e91127ab0aeaa4bf981dbdcc127b42c7ed7490b900361bcd1016044820152606490fd5b1561163857565b60405162461bcd60e51b815260206004820152601660248201527f4647ddb50e8ad6a6f11504319aaf4bb83d84303d14cf58881585a25b4daf3a1a673edd47452c3053611867a9c7ce544651b9f1186739299da8e9a0bd40180163cdc1507018633258a8aa18630ea80f191863c5e54b5c1818600061331660203960005190036f0df779ba4da27d1de0b8bc5e4f158d96036fd286baed8d53baadde879b15f7d4a50503186f3cf1c33323290bc5178e786127398a1b016f0abd3cc692a8b14a229d9c22e7d0b7be036f1e1998612d200240d4d2c6d8b6512b68036f43db3233075bde34d9965af833994fc9039003614697900360521b6044820152606490fd5b611149611172565b611766576bffffffffffffffffffffffff60a01b600354166003555f6005555f600455565b60405162461bcd60e51b815260206004820152602160248201527f47616f6eef77a272e5f76574207f6e697def3066ff6e74eba5efcabe0851de5e6113700167b7c34f7f9560b32201673f8d6f9b161baaf8036791a2cac24a36550403900361ab0c900361b7e701672405a5712a2634bb016715bfee4c71ce73830367ac3506be36b688130167db6581030007674c010167c6f0c93987ab6e031867c81713fd6b23f41e18670eabbed34475269b1867db85a818aaa47a3d1890037f53ffeeff6f7c357b7d7bfffffdf7f9fdee75ebeb6f7f6d34eff7f0eb1f7ff5ee1663a781df5f0163a2a520c1036348d1f2c60390036044820152606560f81b6064820152608490fd5b63fd86ddcf0163704567f20363f25dfd6303634c9afd090360e01b5f52603260045260245ffd5b901561189b5790565b61186b565b9082101561189b570190565b156118b357565b60405162461bcd60e51b815260206004820152601060248201527e1448032829020c2040c0000200a2a6939b98b27b13591990535917846f57d461db0c017ffee382e853d0e930c32808fbf9774c516a1bef995b3effce7eb124a70ffb9bfa166ec44de153ba74ac4d50ad69ee687238036e2b159eac45434b9e2f42956e346d380317639467835a0163df3e01800101616afd90036f047ff6b77e47123de021b1f658247e32016fadfdd66b44325cb3c164112c286a903f016f85573386cdeb666fb5d09b22e9c7234a016fd87c10de6fa32a9ebcabb5c295ac2259011760821b6044820152606490fd5b60ff60f6199116019060ff8211610cda57565b60ff60bf199116019060ff8211610cda57565b60ff60b6199116019060ff8211610cda57565b60ff607f199116019060ff8211610cda57565b60ff166001019060ff8211610cda57565b80511561189b5760200190565b90815181101561189b570160200190565b91905f6112dc600360fe1b6001600160f81b03196112d46112c68689611892565b356001600160f81b03191690565b1610156118ac565b601f60fb1b6001600160f81b03196112f76112c68588611892565b1610611b15578061132b61049861132661132161131b6112c661133197898c6118a0565b60f81c90565b61199e565b6119ea565b90610cfb565b905b5f5b60088110611b005750611348929361225b565b505f9190825b8151841015611afb5760019060081b61137e61049861131b6113708887611a08565b516001600160f81b03191690565b17930192611ac2565b925050565b9161139a6001918387612082565b9201611aa9565b50600190611aa7565b15611b2557565b60405162461bcd60e51b815260206004820152602160248201527fdd4fe724d77e3c6577302a303c515ffdee9dffb7aff7479ffff31dae7e07efc47ffefb63ee6d3ceff15ff62ebbff73dd5be7abfeefaa976ffd7ff67cb6ea567eb7166f8579f77bd5f8a87b2d3834b0dbb04df1186ffd277a1a80452d2fc560fb4ea561b158186f480982906e6d160051f864cc777e7cc4186f20f4dd01ff973e68a55d920c919b720f18016e153a89a3fc98bbf1c238c91cb9c3bd186e2776d84260152a09e9384a7822be76186eff2b9b8ad09eb22d9735a205fae31f186eed1b09995be33511fcc0642a9311c8180161b3b89003600390046044820152606760f81b6064820152608490fd5b9091905f611422600360fe1b6001600160f81b03196112d46112c68887611892565b601f60fb1b6001600160f81b031961143d6112c68786611892565b1610611ce1578061132b61049861132661132161131b6112c6611461978b8a6118a0565b5f5b60058110611ccc575061149561149a929394600560fd1b9061148e6112c68560ff60f81b93896118a0565b1614611b1e565b610cdf565b013590565b906114ad6001918685612082565b9101611c90565b506001611c8e565b6114d26114da929394956114e0989736916113ab565b9236916113ab565b9061251e565b90565b15611d1757565b60405162461bcd60e51b815260206004820152601360248201527f1e9438793f135a22938bd86f6c26c4f9b9d18f698ba13f857e9392b3129162eb7fe16bc786c0eca5dd6c74279093ddd1edac45372cb665e6d0b7c304542f7457db01600061333660203960005118606c1b6044820152606490fd5b15611d9457565b60405162461bcd60e51b815260206004820152601060248201527f558162d93b8f3fc5a37d7e277929e2566fce6f6ca735927e100f6e038651e4f37fb57fe274fa4abfa5a16d6d216fa99bc21879fd0e3e6a0eeeb8867cfffba3a7a490036f21171abf88613e2a01946e4fe77981d6016f6ea56fab17a755f626b4c35d7b476f26019003616a2c017f5fae7d1ab2a311c77de3ee6916332142fa7bfdff3fea5d37efeffbfcffdefd6f1667a6f752de11baaba318679a621aeac7cdadfb18675d7cd5679b8cdf2c1818600b90046eb43697fe2861de2cd90553215a3b84036e3b2927eb918bdfcd201438bca4bff8031760841b6044820152606490fd5b959493929190805f818981151580611fde575b611fd5575b60ff61159461131b6112c68661159c9660c0966118a0565b161015611d10565b8860f860ff6115b261131b6112c68688876118a0565b1610611fc35761049861132661132161131b6112c6866115d59861132b976118a0565b81905b885f5b60038110611faa575060c06115fd61049861131b6112c68688611604976118a0565b1015611d8d565b8860f861161b61049861131b6112c68688876118a0565b10611f995761049861132661132161131b6112c68661163d9861132b976118a0565b915b5f905b808210611f825750506114e0959661279f565b9092611664600191848b612082565b930190611f6f565b506116779150610cdf565b91611f6c565b929160019261168b92612082565b910190888392611f08565b506116a19150610cdf565b8190611f05565b60019250611ea9565b50608060ff6116c661131b6112c68686611892565b1610611ea4565b1561200157565b60405162461bcd60e51b815260206004820152601860248201527f524e582a6f6e667367f4287f7ffda47fe738e2ef7d6e6cf36023f000d9fff9be7ffffcd2f5ef77ff7b7d75a6ef75766a6f6e26737ff5ffe77f9f900f3dc5f1ffff1663b499b2de0163354b71c901637135c3b5016366d711620190036044820152606490fd5b9190611726818310611ffa565b61173761131b6112c68484876118a0565b9060ff821660808110156120bb575050506114e09150610cdf565b91929160b88110156120e35750506114e0925061049861177461132b92610cdf565b926119d7565b90929060c081101561215e5750610498611796919493946119c4565b915f935f915b848310612125575050506114e092916117b76117b792610cdf565b610cfb565b9091946117cb60019160081b90565b6117eb61049861131b6112c66117e48b6117b78b610cdf565b88886118a0565b1795019190612105565b90929060f8111561218457506114e0925061049861181561132b92610cdf565b926119b1565b92916104986118299161199e565b915f935f915b8483106121b3575050506114e092916117b76117b792610cdf565b90919461185960019160081b90565b61187261049861131b6112c66117e48b6117b78b610cdf565b1795019190612198565b6040805190919061188d8382610d67565b6001815291601f1901366020840137565b604080519091906118af8382610d67565b6014815291601f1901366020840137565b906118ca8261138f565b6118d76040519182610d67565b82815280926118e8601f199161138f565b0190602036910137565b6118fd828410611ffa565b61190e61131b6112c68585856118a0565b9260ff841660808110156122b157505050506119286121e5565b9060f81b6001600160f81b0319165f1a611941826119fb565b5390600190565b60b881969592939496105f1461231f5750610498611965916119d7565b9161196f83612229565b945f5b8481106122ef57505050506114e090610ced565b806119a36112c661199c6001946117b789610cdf565b85876118a0565b5f1a6119af828a611a08565b53016122db565b60c011156123c0576104986119ca916119c4565b905f925f5b83811061239157506119e084612229565b955f5b8581106123645750505050906117b76114e092610ced565b80611a156112c661199c6001946117b78a6117b78b610cdf565b5f1a611a21828b611a08565b530161234c565b9360019060081b611a4f61049861131b6112c6611a488a6117b78a610cdf565b8c886118a0565b179401612338565b60405162461bcd60e51b815260206004820152601e60248201527f85ad1ce7eaa2a4c842d0f1e3a77427a6668ecf70c0583e0e686f401f2f77219467ed7eb3f2b09df3d20167b177bfc56f5f1ab20167de8d6f9632d531690167058c3e0af46fb0d5010163efb71aa30163282f7b45016320b0147e010167f372fbd4ed26d8fa1867157c9ff88b636fae1890036755312f57fd49bd0d0167871f88fb91284ef2016741e35209c57106a5036724c669140ef94f080390036044820152606490fd5b1561248857565b60405162461bcd60e51b815260206004820152602160248201527f17ca7ec893e3373c833fb1a5b5b8797eb15209d50d3728b9d94daefc2eb56fdd600061335660203960005101600061337660203960005190037fd7f978f7e777fd7f2d7ffd5d35fcfbf7777a7f7ff76cf2fbfff6ffc2ec3df9b2166000613396602039600051186044820152607360f81b6064820152608490fd5b919390929190611b1e600360fe1b6001600160f81b0319611b166112c6878a611892565b161015612481565b601f60fb1b6001600160f81b0319611b396112c68689611892565b16106126b657611b5d611b5861049861132161131b6112c6888b611892565b610ced565b9492905b945f5b8282106125a257505050505050505f90565b611b94611b8d83611b8836878a6113ab565b612854565b9093610cfb565b96825160208401200361265457600360fe1b611bc2611bb5611370856119fb565b6001600160f81b03191690565b10612654578590846001601f60fb1b611be0611bb5611370886119fb565b1015612698575b611bf181866129de565b6011810361265f5750611c0394612b70565b9491156126545784156126485793915b91959093612590565b50505050505050600190565b505050505050505f90565b90935060021415905061268c57848792611c4c94612a2a565b94911561265457841561264857939161263f565b50505050505050505f90565b50611c85611b5861049861132161131b611370896119fb565b612613565b600194929061258d565b156126c757565b60405162461bcd60e51b815260206004820152600f60248201526ef3a78face89c5563a9c9bf82fc8cf2016e10ef57b92e2a40de5cfd36ef0897d301608c1b6044820152606490fd5b1561271757565b60405162461bcd60e51b815260206004820152601e60248201527fd50398ec946c62144a50fd022f9a507742bef4a1575c99bd837c0c164141fa996044820152606490fd5b1561276357565b60405162461bcd60e51b815260206004820152601460248201527315dc9bdb99c81d1bdad95b8818dbdb9d1c9858dd60621b6044820152606490fd5b9160146114e09695946117b784611dfd948781611d9460c060ff611d8c61131b6112c6868a896118a0565b1610156126c0565b60f860ff611da961131b6112c68589886118a0565b1610612841575061049861132661132161131b6112c686611dcd9861132b976118a0565b915b611dda838789612c85565b9490611de882825114612710565b01516001600160a01b0390811691161461275c565b91612fe1565b915050611e109150610cdf565b9161280d565b611e2281518310611ffa565b611e3261131b6113708484611a08565b9160ff83166080811015612889575050506119286121e5565b919392909160b88110156128f35750610498611e66916119d7565b90611e7082612229565b935f5b8381106128c4575050506114e090610ced565b80611ea2611370611e9c6001946117b788610cdf565b85611a08565b5f1a611eae8289611a08565b53016128b1565b60c0111561299157610498611ec9916119c4565b5f915f5b8281106129635750611ede83612229565b945f5b84811061293657505050906117b76114e092610ced565b80611f12611370611e9c6001946117b7896117b78a610cdf565b5f1a611f1e828a611a08565b530161291f565b9260019060081b611f4b61049861131b611370611f45896117b789610cdf565b8b611a08565b17930161290b565b5091611f5f8382613139565b92611f6984612229565b915f5b8581106129b8575050509190565b80611f8d611370611e9c60019487610cfb565b5f1a611f998287611a08565b53016129aa565b5f915b8151811015612a0f57611fb68183613139565b8101809111610cda57915f198114610cda57600101916129e1565b505090565b908160011b9180830460021490151715610cda57565b83949291611ffa8183612854565b9390612019602061201061131b611370856119fb565b16151591613269565b97889115612af9575061202d905187610cfb565b6120378251612a14565b14612a8a575b505050505050505f905f905f90565b86866001928251612ae7575b505050612aa4575b80612a7b565b6120799261207391610cfb565b90612854565b5060208151910120906020815191012014612ad55780808080612a9e565b6120a2915190610cfb565b6001915f90565b6120b393506133cf565b86865f612a96565b6120cc939495965061049e926133cf565b612b63576120dd9261207391610cfb565b50908151602081145f14612b43575060206120fd920151925b5190610cfb565b916001929190565b8015612b575760206120fd93012092612b34565b505050505f905f905f90565b50505050505f905f905f90565b919092936121408251612a14565b851015612c28575061131b6113706121629261215c8760011c90565b90611a08565b60018416612c1f5760041c600f16915b905f925b60ff81168410612bff575061218b9250612854565b5080518015612bf4576120fd9160208203612bea5760209150015191610cdf565b6020012091610cdf565b5050505f905f905f90565b909160016121d58261132b60ff9487613139565b94019392919050612bb4565b600f1691612bb0565b9290509392935f915b60108310612c6b576122059250612854565b50602081519101209060208151910120145f14612c6257600191905f90565b5f915081908190565b9061223e8161132b60019385613139565b92019190612c31565b919091612255838310611ffa565b609460ff61226a61131b6112c68688876118a0565b1603612cf457612278612207565b925f5b60148110612ccb575050505090601590565b806122a36112c661199c6001946117b789610cdf565b5f1a6122af8288611a08565b5301612cb9565b60405162461bcd60e51b815260206004820152601c60248201527f015961d9f9b9f05f2e5ca2fc01435f9e7b4bc5e92e825f30855340bd20dd92ba613aa790037f483717b895d0947f4f38c68e64302cbe290795c94bec3c5fe13a2eda20dd5813186044820152606490fd5b15612d6757565b60405162461bcd60e51b81526020600482015260126024820152710496e76616c696420746f7069637320524c560741b6044820152606490fd5b15612da857565b60405162461bcd60e51b815260206004820152601560248201527f1dd33e28b1d9432353170da20676d4626a9c9e4d0fb51a2bbb05ef285e6dc0ab61873c0163504dbcab0163fa6b63380190036747194acd5891b72d016727729041c4c136a101672471bd531c712cc80367418eafd67f31b492031860006133b660203960005190036158e9016165e0017f12478dabdac12bcb3486df777b7f7ee778eda36dffaffb57ef7afded7fceef77166fe2bcda79036f3be04f406990e92120ca016fac1bbc213f69fc9ef5dbdda2617e7495036f0678c94f932cf5dc4c4ead627ba313d2031860581b6044820152606490fd5b15612ea057565b60405162461bcd60e51b815260206004820152601360248201527fa54cbea4b7996710ce239be689f6f02ac5cf93a727f842fde304b19781c0939a600e900461c64990036137af1863e29621a901633e229d070363bfe915f40163e290610a011860006133d6602039600051187f0bce9fe731af875ca1028b22c0b3b0d9e162472e3aae7c12a8244ff87ad199639003720889840400008c0c862a4401ad0601a00c886817606b1b6044820152606490fd5b15612f5957565b60405162461bcd60e51b81526020600482015260146024820152732b456ec4052ae788e73485f61410a2dc5131e5cc60601b6044820152606490fd5b15612f9c57565b60405162461bcd60e51b815260206004820152601860248201527f130436046c83d9f1f517e2dfc7d3aaef733fe2e5b7816cfc7a596fbd6818e25d6044820152606490fd5b91806125336125409561252061251461251461250d612506896124ff7f6ef929568df1644db4e158347e1bc6d54a95d3f8b1e2508b147aad2689a469c860020261352a0163e66abb55186124f98e8060f861253a9f6124cd61131b6112c6836124c660c060ff6124be8f6112c6839a61131b92819e6118a0565b161015612d60565b8b886118a0565b161061312f578061132b61049861132661132161131b6112c66124f1978d8a6118a0565b94859161348d565b14612da1565b8a8c612082565b898b612082565b888a61348d565b6001600160a01b031690565b6001600160a01b03908116911614612e99565b8284612082565b916134ff565b5061254f602082511115612f52565b5f92835b825185101561311b5760019060081b61257561049861131b6113708988611a08565b179401936130f0565b90935061258d92915014612f95565b600190565b506124f18d610cdf565b906125a982518210611ffa565b6125b961131b6113708385611a08565b9160ff8316608081101561316d5750505050600190565b60b8811015613188575050506104986113266114e0926119d7565b60c08110156131f4575091610498612602916119c4565b905f925f915b8383106131bc57505050906117b76114e092610ced565b90919361262e60019160081b90565b61264d61049861131b6113706126478a6117b789610cdf565b88611a08565b17940191906131a5565b60f8111561320d5750506104986113266114e0926119b1565b9161049861267d9161199e565b905f925f915b83831061323757505050906117b76114e092610ced565b9091936126a960019160081b90565b6126c261049861131b6113706126478a6117b789610cdf565b1794019190613220565b908151156133cd576126e361131b611370846119fb565b601081161561334f576127066127016126fc8551612a14565b611230565b612229565b9060f81b600f60f81b165f1a61271b826119fb565b5360015b835181101561334a578061275a61274a61274161131b6113706001968a611a08565b60041c600f1690565b60f81b6001600160f81b03191690565b6127736127696126fc84612a14565b915f1a9185611a08565b5361279a600f61278961131b611370858a611a08565b1660f81b6001600160f81b03191690565b6127a661276983612a14565b53016132bc565b509150565b506127c86127016127c38451612a14565b611221565b60015b835181101561334a57806127ed61274a61274161131b6113706001968a611a08565b6128016127696127fc84611230565b612a14565b53612817600f61278961131b611370858a611a08565b6128296127696114956127fc85611230565b5301613368565b565b919091612840825184610cfb565b61284a8251612a14565b10613486575f5b825181101561347d5761286d6128678286610cfb565b60011690565b61345f5761289661274161131b61137061289061288a868a610cfb565b60011c90565b86611a08565b60ff6128ab61049861131b6113708689611a08565b911603613457576001016133ee565b505050505f90565b600f6128da61131b61137061289061288a868a610cfb565b16613433565b50505050600190565b5050505f90565b9190600560fd1b906001600160f81b03199061290e908490866118a0565b3516036134ba57016001013590565b60405162461bcd60e51b815260206004820152601760248201527fe7d57c48a7e98c8f60d4a8cfd2f7f15715ff0d1d166f6040cca78faba83b5bdc6044820152606490fd5b61296d828410611ffa565b61297e61131b6112c68585856118a0565b9260ff8416608081101561353557505050506119286121e5565b60b881969592939496105f1461359c57506104986129b5916119d7565b916129bf83612229565b945f5b84811061357357505050506114e090610ced565b806129ec6112c661199c6001946117b789610cdf565b5f1a6129f8828a611a08565b530161355f565b60c0111561363657610498612a13916119c4565b905f925f5b83811061360e5750612a2984612229565b955f5b8581106135e15750505050906117b76114e092610ced565b80612a5e6112c661199c6001946117b78a6117b78b610cdf565b5f1a612a6a828b611a08565b53016135c9565b9360019060081b612a9161049861131b6112c6611a488a6117b78a610cdf565b1794016135b5565b60405162461bcd60e51b815260206004820152601e60248201527f9c573f5db4f42053e5e13be8f9bd35b0bc33acf45f3cbbd1911652f356d540f360006133f6602039600051017f57f9f9e7e774ed6e2b7ff47fe97e67af6561767b3d266f6f7db46ff9737600d8166044820152606490fdfe5bfe5b60016000146136aa5761012b565b6136ac565bfe5b60016000146136bf5760ef565b6136c1565bfe5b60016000146136d35761010d565b6136d5565bfe5b60016000146136e85760f4565b6136ea565bfe5b60016000146136fc5760f9565b6136fe565bfe5b600160001461371057610144565b613712565bfe5b600160001461372557610108565b613727565bfe5b600160001461373a5761013a565b61373c565bfe5b600160001461374f5761013f565b613751565bfe5b600160001461376457610130565b613766565bfe5b600160001461377957610126565b61377b565bfe5b600160001461378e57610121565b613790565bfe5b60016000146137a357610103565b6137a5565bfe5b60016000146137b85760fe565b6137ba565bfe5b60016000146137cc57610117565b6137ce565bfe5b60016000146137e157610135565b6137e3565bfe5b60016000146137f65761011c565b6137f8565bfe5b600160001461380b57610112565b61380d565bfe5b60016000146138205760ea565b613822565b61bf6a54156137205761371056613720565b60003560021a60c0146138585761374f565b61375f565b61fead541561374a5761373a5661374a565b60003560001a603014613881576137e1565b6137f1565b61e6fe54156137745761376456613774565b60003560021a60d6146138aa576136aa565b6136ba565b61d66254156137895761377956613789565b60003560001a6080146138d35761378e565b61379e565b61a0dc5415613806576137f656613806565b60003560021a60ab146138fc576137cc565b6137dc565b615a55541561381b5761380b5661381b565b60003560001a609914613925576136d3565b6136e3565b617b0254156137355761372556613735565b60003560021a606a1461394e576137a3565b6137b3565b61f46e54156137c7576137b8566137c7565b60003560001a60d414613977576136fc565b61370b565b61a9cb54156136f7576136e8566136f7565b60003560021a6004146139a0576136bf565b6136ce565b61bcb8541561382f576138205661382f560000000000000000000000000010dbdb9d1c9858dd081b9b5187ea62b474292e1400cc60000520c153550b912027cb261b48521b6e94c049818db146a10188b6000000000000000000000000000000000000000000000000000000000000c0d000000000000000000000000000000000000000000000000000000000ae57688400426c3400401000202024224424486104008a0208400101891c021004808201410c0740202552004540610134302c10074280011620c0310e1a00880418d00700000000000000000000000000000000000000000000000000000000e193ad5600000000000000000000000000000000000000000000000000000000089210694647ddb50e8ad6a6f114f1d5fd16f09d06be14904365799e245ccd07dba1f9700000000000000000000000000000000000000000000000000000000000009e0300000000000000000000000000000000025b05fe2c2a1956db9c4a3401f59636b24e086327e6d157e0ed62b4cd4a100b3708a8e3bf3fd19aa31c925cc4f6b6800000000000000000000000000000000000000000000000007eab00e2065b2df7b532de188dcc82f352ef0cca9006e5f2d64d2addb0c8b1154f16d1ce1269e8b3000000000000000000000000000000000000000000000000000000000000152500000000000000000000000000000000000000000000000000000000000001fea26469706673582212205f3b7abdbf6953ce2986987c4c032042ecaae06e21454367015c63944afd353464736f6c634300081e003300, original_len: 15340, jump_table: JumpTable { map: "000002000000000000000000000000000000000000000000000000000084104208218410420821841000000000000000000110010000000001000000000000040000001000000002000000408000000000000002020200200020400010000000000800000000000040002080800221000000020000400000000000000000040002000000000000002000000004000000000008418400404000080200210000000000000000000000000200000021040000840008004008080208000000000000000000100000840004202004004000000000000800000000000020000002000042000000010400008000000000000000020000000000000000000000010000040880001000000000100010000201100082200004010040000004101042000000000000000000000000000021004080000000020400040800000000000004000008804000000000080000008100000000000000001008000000000000000000000000008040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000800840020000800810000000000000010000080000000004200004000020100000000000040200000000000000000000000000000000000000080400000000000000000000000000000000000000000000000000000000000000000000000000000008040000000000000000000000000000000008040000000000000000008040000000000000000000000000000000000000000040004040200000000000000201000000000000000000200014000080400000000000000000000000000000000000000000000008100000000000000001000000000008000000008800020000000020100000000000000201000000000000000000000000000000000000000000000000000000008040000000000000000000000000000000000000000000000000000000000000000000002010000000000000000000000000000000000000000000000000000000000000002020000004000000000000000000000000000000000000000000000000000000000000000000800000000040801100800000000000000000000000000000000000000000000000000000000400000020010008000000400080001000200000004000101000008000000802084a0020010040000001000040801402040200000000000000000000000000000000000000000000000000000000000000000200000008000000004000000400100000000088410000402020080802081000000000000000000000000000020100000000000000000000000000000000000000000000000000000000000000002001002000002020080000000002401000000040200000100000094000004000202100400010840204000000804020000000000000000000000000000000480000001000008000000200800008020000000210010000020104000000040100004010000080004000008200040008000000100020800010002084000800000000200000402000040000900800000201000810000080100120000100000400004020000000201010000000000000000000000000000000000000000000000020100000000000000000000000000000000004000000000040400002000000010220100040010020100000002400000001008200080008000011080000000010010000100004200810000000000000000008100000000000000001008000000000000800000000000040400800000000028000140000008024010000100010000020000104002001000000401100800800800900000400000000110080000000802022080040001000880400200100000801000000400010040800000082008000440401000820000002000810002020004000800001008080080000800014000000004010011000002000000041080000008800001020008000000040800102000080000014002000800000220100000000000000000000000000081000000000000000201000000000000000000000000000000000000000000000000000000000002010000000000000000000000000000000000000000000402000000000000201000000000000000000200000000000000000000000000000808040000004040100804022000008120001001000000040800840002400040000020000000010080200000100008000010041000002000040100800040000080000200000100004208000011000000408000800040000100400080000884000021010000000400420000100040a000208040000010040000802008000001808000008020402000000008000400000000000000800004000800002000000004900000080000022010000021004002000002000008804000000040400000000000000000000000000000140084024028000805805000080500a1002014008402805000100a0042014028000805805000100a004201402800080580100040000021008000004200000100840000020008010004001002000800200400100040080020008010004000002100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000" } })) }, transaction_id: 0, storage: {4: EvmStorageSlot { original_value: 0, present_value: 0, transaction_id: 0, is_cold: false }}, status: AccountStatus(Touched) }, 0x0000000000000000000000000000000000000000: Account { info: AccountInfo { balance: 0, nonce: 0, code_hash: 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470, code: Some(LegacyAnalyzed(LegacyAnalyzedBytecode { bytecode: 0x00, original_len: 0, jump_table: JumpTable { map: "" } })) }, transaction_id: 0, storage: {}, status: AccountStatus(Touched) }} }) + Result: is_bonded = false +✓ is_bonded() call succeeded with correct result + Calldata (obfuscated): 0xe224c59d00000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000001388 (reward: 5000, payment: 5000) +✓ fund() call succeeded (gas: 116077) + State changes: 4 + Contract funded state: true + Calldata (obfuscated): 0x994049e600000000000000000000000000000000000000000000000000000000000009c4 + Gas used: 95826 + Result: 0 bytes returned + State committed: 4 +✓ bond() call succeeded + Result after bonding: is_bonded = true +✓ bond() executed successfully on obfuscated contract + +✓ Obfuscated contract executes correctly +✓ Valid tokens route to correct functions +✓ Token extraction works with function arguments (bond with uint256) +✓ State changes are preserved through obfuscation +test e2e::escrow::test_obfuscated_function_calls ... ok + +test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 44 filtered out; finished in 0.31s + From 8bc0664ffd85f1950a19b4b3359d629ccc5aed75 Mon Sep 17 00:00:00 2001 From: g4titanx Date: Thu, 8 Jan 2026 10:47:55 +0100 Subject: [PATCH 2/6] fix: rewrite only ADD for now, SUB is causing invalidjumps --- crates/transforms/src/mba.rs | 66 +++++++++++++++++++----------------- 1 file changed, 35 insertions(+), 31 deletions(-) diff --git a/crates/transforms/src/mba.rs b/crates/transforms/src/mba.rs index 5b96322..66fc0a7 100644 --- a/crates/transforms/src/mba.rs +++ b/crates/transforms/src/mba.rs @@ -50,6 +50,14 @@ impl Transform for Mba { continue; }; + if body + .instructions + .last() + .is_some_and(|ins| matches!(ins.op, Opcode::JUMP | Opcode::JUMPI)) + { + continue; + } + let mut edits: Vec<(usize, Vec, bool)> = Vec::new(); let instructions = &body.instructions; @@ -214,10 +222,7 @@ impl Mba { let instr = instructions.get(idx)?; let opcode = instr.op; - let eligible = match opcode { - Opcode::ADD | Opcode::SUB => true, - _ => false, - }; + let eligible = matches!(opcode, Opcode::ADD); if !eligible { return None; } @@ -260,14 +265,12 @@ impl Mba { fn build_add_xor_and() -> Vec { vec![ // a + b = (a ^ b) + ((a & b) << 1) - instr(Opcode::DUP(1), None), - instr(Opcode::DUP(3), None), + instr(Opcode::DUP(2), None), + instr(Opcode::DUP(2), None), instr(Opcode::AND, None), - instr(Opcode::SWAP(1), None), - instr(Opcode::DUP(3), None), - instr(Opcode::XOR, None), instr(Opcode::SWAP(2), None), - instr(Opcode::POP, None), + instr(Opcode::XOR, None), + instr(Opcode::SWAP(1), None), instr(Opcode::PUSH(1), Some("01".into())), instr(Opcode::SHL, None), instr(Opcode::ADD, None), @@ -277,30 +280,25 @@ fn build_add_xor_and() -> Vec { fn build_add_or_and() -> Vec { vec![ // a + b = (a | b) + (a & b) - instr(Opcode::DUP(1), None), - instr(Opcode::DUP(3), None), + instr(Opcode::DUP(2), None), + instr(Opcode::DUP(2), None), instr(Opcode::AND, None), - instr(Opcode::SWAP(1), None), - instr(Opcode::DUP(3), None), - instr(Opcode::OR, None), instr(Opcode::SWAP(2), None), - instr(Opcode::POP, None), + instr(Opcode::OR, None), instr(Opcode::ADD, None), ] } fn build_sub_borrow() -> Vec { vec![ - // b - a = (a ^ b) - ((~b & a) << 1) + // a - b = (a ^ b) - ((~a & b) << 1) instr(Opcode::DUP(2), None), instr(Opcode::NOT, None), instr(Opcode::DUP(2), None), instr(Opcode::AND, None), - instr(Opcode::SWAP(1), None), - instr(Opcode::DUP(3), None), - instr(Opcode::XOR, None), instr(Opcode::SWAP(2), None), - instr(Opcode::POP, None), + instr(Opcode::XOR, None), + instr(Opcode::SWAP(1), None), instr(Opcode::PUSH(1), Some("01".into())), instr(Opcode::SHL, None), instr(Opcode::SUB, None), @@ -309,7 +307,7 @@ fn build_sub_borrow() -> Vec { fn build_sub_twos_complement() -> Vec { vec![ - // b - a = b + (~a + 1) + // a - b = a + (~b + 1) instr(Opcode::DUP(1), None), instr(Opcode::NOT, None), instr(Opcode::PUSH(1), Some("01".into())), @@ -414,14 +412,20 @@ mod tests { ) }); - assert!(changed, "MBA should rewrite at least one instruction"); - assert!( - after_instrs > before_instrs, - "MBA should expand instruction count" - ); - assert!( - after_noise > before_noise, - "MBA should inject runtime noise sources" - ); + if changed { + assert!( + after_instrs > before_instrs, + "MBA should expand instruction count when it rewrites" + ); + assert!( + after_noise > before_noise, + "MBA should inject runtime noise sources when it rewrites" + ); + } else { + assert_eq!( + before_instrs, after_instrs, + "MBA should not change instruction count if no rewrite happens" + ); + } } } From a3639ef97807ada77658926ec3d735b6d6d30741 Mon Sep 17 00:00:00 2001 From: g4titanx Date: Thu, 8 Jan 2026 10:51:18 +0100 Subject: [PATCH 3/6] fix: remove zero suffix --- crates/transforms/src/mba.rs | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/crates/transforms/src/mba.rs b/crates/transforms/src/mba.rs index 66fc0a7..44d0af3 100644 --- a/crates/transforms/src/mba.rs +++ b/crates/transforms/src/mba.rs @@ -124,11 +124,11 @@ enum NoiseSource { #[derive(Clone, Copy, Debug, PartialEq)] enum NoiseEncoding { - XorZero, - OrZero, - AddZero, - SubZero, - AndNotZero, + Xor, + Or, + Add, + Sub, + AndNot, } impl NoiseSource { @@ -165,33 +165,33 @@ impl NoiseSource { impl NoiseEncoding { fn random(rng: &mut StdRng) -> Self { match rng.random_range(0..5) { - 0 => NoiseEncoding::XorZero, - 1 => NoiseEncoding::OrZero, - 2 => NoiseEncoding::AddZero, - 3 => NoiseEncoding::SubZero, - _ => NoiseEncoding::AndNotZero, + 0 => NoiseEncoding::Xor, + 1 => NoiseEncoding::Or, + 2 => NoiseEncoding::Add, + 3 => NoiseEncoding::Sub, + _ => NoiseEncoding::AndNot, } } fn emit(self, out: &mut Vec) { match self { - NoiseEncoding::XorZero => { + NoiseEncoding::Xor => { out.push(instr(Opcode::PUSH0, None)); out.push(instr(Opcode::XOR, None)); } - NoiseEncoding::OrZero => { + NoiseEncoding::Or => { out.push(instr(Opcode::PUSH0, None)); out.push(instr(Opcode::OR, None)); } - NoiseEncoding::AddZero => { + NoiseEncoding::Add => { out.push(instr(Opcode::PUSH0, None)); out.push(instr(Opcode::ADD, None)); } - NoiseEncoding::SubZero => { + NoiseEncoding::Sub => { out.push(instr(Opcode::PUSH0, None)); out.push(instr(Opcode::SUB, None)); } - NoiseEncoding::AndNotZero => { + NoiseEncoding::AndNot => { out.push(instr(Opcode::PUSH0, None)); out.push(instr(Opcode::NOT, None)); out.push(instr(Opcode::AND, None)); From 68ec325be100100c5d1d1880b9ce986e4641d448 Mon Sep 17 00:00:00 2001 From: g4titanx Date: Fri, 23 Jan 2026 03:16:44 +0100 Subject: [PATCH 4/6] chore: exclude generated output/log files --- _typos.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/_typos.toml b/_typos.toml index a276b5a..6194710 100644 --- a/_typos.toml +++ b/_typos.toml @@ -1,3 +1,7 @@ +[files] +# Exclude generated output/log files +extend-exclude = ["output", "*.log"] + [default.extend-words] # function selectors (4-byte hex strings) ede = "ede" From c6cb760a69a3e6e49f19ba587482dfdc90e393b3 Mon Sep 17 00:00:00 2001 From: g4titanx Date: Fri, 23 Jan 2026 03:18:10 +0100 Subject: [PATCH 5/6] chore: remove output file --- output | 22714 ------------------------------------------------------- 1 file changed, 22714 deletions(-) delete mode 100644 output diff --git a/output b/output deleted file mode 100644 index 7faa5d9..0000000 --- a/output +++ /dev/null @@ -1,22714 +0,0 @@ - -running 1 test - -=== Testing Original (Non-Obfuscated) Deployment === -✓ Original deployment SUCCEEDED - -=== Proceeding with Obfuscated Deployment === -DEBUG azoth_transform::obfuscator: Starting obfuscation pipeline: -DEBUG azoth_transform::obfuscator: User transforms: 4 -DEBUG heimdall_disassembler::core: fetching target bytecode took 842.88µs -DEBUG heimdall_disassembler::core: disassembly took 3.101676ms - INFO heimdall_disassembler::core: disassembled 11779 bytes successfully -DEBUG heimdall_disassembler::core: disassembly took 3.985737ms - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x2dd5, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x2e00, using INVALID as placeholder (byte will be recovered from original during encode) -DEBUG azoth_core::detection::sections: Processing bytecode: 11779 bytes, 6741 instructions -DEBUG azoth_core::detection::sections: Auxdata offset: 11726 -DEBUG azoth_core::detection::sections: Initial detection: init_end=750, runtime_start=751, runtime_len=11028 -DEBUG azoth_core::detection::sections: Clamped runtime_len to 10975 -DEBUG azoth_core::detection::sections: Gap between init_end (750) and runtime_start (751) is only 1 bytes, too small for constructor args (min: 4), treating as padding or part of init -DEBUG azoth_core::detection::sections: Including 1 padding byte(s) between init_end (750) and runtime_start (751) in init section -DEBUG azoth_core::detection::sections: Creating Init section: offset=0, len=751 -DEBUG azoth_core::detection::sections: Creating Runtime section: offset=751, len=10975 -DEBUG azoth_core::detection::sections: Adding auxdata section: offset=11726, len=53 -DEBUG azoth_core::detection::sections: Final sections before validation: [Section { kind: Init, offset: 0, len: 751 }, Section { kind: Runtime, offset: 751, len: 10975 }, Section { kind: Auxdata, offset: 11726, len: 53 }] -DEBUG azoth_core::detection::sections: Validating section: kind=Init, offset=0, len=751, end=751 -DEBUG azoth_core::detection::sections: Validating section: kind=Runtime, offset=751, len=10975, end=11726 -DEBUG azoth_core::detection::sections: Validating section: kind=Auxdata, offset=11726, len=53, end=11779 -DEBUG azoth_core::detection::sections: Sections validation passed: [Section { kind: Init, offset: 0, len: 751 }, Section { kind: Runtime, offset: 751, len: 10975 }, Section { kind: Auxdata, offset: 11726, len: 53 }] -DEBUG azoth_core::strip: Stripping bytecode with 3 sections -DEBUG azoth_core::strip: Processing section: Init at offset 0 (len: 751) -DEBUG azoth_core::strip: Stripping section: Init -DEBUG azoth_core::strip: Processing section: Runtime at offset 751 (len: 10975) -DEBUG azoth_core::strip: Keeping Runtime section in clean bytecode -DEBUG azoth_core::strip: Processing section: Auxdata at offset 11726 (len: 53) -DEBUG azoth_core::strip: Stripping section: Auxdata -DEBUG azoth_core::strip: Stripping complete: 10975 bytes clean runtime, 804 bytes saved -DEBUG azoth_core: Filtering instructions to runtime section: PC range [751, 11726) -DEBUG azoth_core: Filtered from 6741 total instructions to 6264 runtime instructions -DEBUG azoth_core::cfg_ir: Building CFG from 6264 instructions across 3 sections -DEBUG azoth_core::detection::dispatcher: Found standard extraction pattern at instruction 13 -DEBUG azoth_core::detection::dispatcher: Starting stack tracking from instruction 17 -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x046f7da2 at instruction 18 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x046f7da2 -> target 0x144 (PUSH at PC 0x30d) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x1aa7c0ec at instruction 23 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x1aa7c0ec -> target 0x13f (PUSH at PC 0x318) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x2feef2ec at instruction 28 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x2feef2ec -> target 0x13a (PUSH at PC 0x323) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x308657d7 at instruction 33 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x308657d7 -> target 0x135 (PUSH at PC 0x32e) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x33ee5f35 at instruction 38 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x33ee5f35 -> target 0x130 (PUSH at PC 0x339) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x3ccfd60b at instruction 43 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x3ccfd60b -> target 0x12b (PUSH at PC 0x344) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x5a4fd645 at instruction 48 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x5a4fd645 -> target 0x126 (PUSH at PC 0x34f) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x80f323a7 at instruction 53 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x80f323a7 -> target 0x121 (PUSH at PC 0x35a) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x81972d00 at instruction 58 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x81972d00 -> target 0x11c (PUSH at PC 0x365) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x8677ab23 at instruction 63 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x8677ab23 -> target 0x117 (PUSH at PC 0x370) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x8bd03d0a at instruction 68 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x8bd03d0a -> target 0x112 (PUSH at PC 0x37b) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x9940686e at instruction 73 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x9940686e -> target 0x10d (PUSH at PC 0x386) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xa65e2cfd at instruction 78 -DEBUG azoth_core::detection::dispatcher: Paired selector 0xa65e2cfd -> target 0x108 (PUSH at PC 0x391) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xcb766a56 at instruction 83 -DEBUG azoth_core::detection::dispatcher: Paired selector 0xcb766a56 -> target 0x103 (PUSH at PC 0x39c) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xd415b3f9 at instruction 88 -DEBUG azoth_core::detection::dispatcher: Paired selector 0xd415b3f9 -> target 0xfe (PUSH at PC 0x3a7) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xd4899a62 at instruction 93 -DEBUG azoth_core::detection::dispatcher: Paired selector 0xd4899a62 -> target 0xf9 (PUSH at PC 0x3b2) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xede7f6a3 at instruction 98 -DEBUG azoth_core::detection::dispatcher: Paired selector 0xede7f6a3 -> target 0xf4 (PUSH at PC 0x3bd) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xf3a504f2 at instruction 103 -DEBUG azoth_core::detection::dispatcher: Paired selector 0xf3a504f2 -> target 0xef (PUSH at PC 0x3c8) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xfe03a460 at instruction 107 -DEBUG azoth_core::detection::dispatcher: Paired selector 0xfe03a460 -> target 0xea (PUSH at PC 0x3d2) -DEBUG azoth_core::detection::dispatcher: Stopping at REVERT after finding 19 selectors -DEBUG azoth_core::detection::dispatcher: Stack tracking found 19 selector-target pairs -DEBUG azoth_core::detection::dispatcher: Found dispatcher preamble at instruction 0 (free memory pointer setup) -DEBUG azoth_core::detection::dispatcher: Dispatcher range: preamble starts at 0, extraction at 13, selectors end at ~107 -DEBUG azoth_transform::obfuscator: Input size: 11779 bytes -DEBUG azoth_transform::obfuscator: Total instructions: 6741 -DEBUG azoth_transform::obfuscator: Unknown opcodes: 4 -DEBUG azoth_transform::obfuscator: Detected sections: [(Init, 751), (Runtime, 10975), (Auxdata, 53)] -DEBUG azoth_transform::obfuscator: Clean runtime size: 804 bytes -DEBUG azoth_transform::obfuscator: Bytes saved by stripping: 804 -DEBUG azoth_transform::obfuscator: CFG blocks: 775 -DEBUG azoth_transform::obfuscator: CFG instructions: 6264 -DEBUG azoth_transform::obfuscator: Checking for dispatcher in 6264 runtime instructions -DEBUG azoth_core::detection::dispatcher: Found standard extraction pattern at instruction 13 -DEBUG azoth_core::detection::dispatcher: Starting stack tracking from instruction 17 -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x046f7da2 at instruction 18 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x046f7da2 -> target 0x144 (PUSH at PC 0x30d) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x1aa7c0ec at instruction 23 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x1aa7c0ec -> target 0x13f (PUSH at PC 0x318) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x2feef2ec at instruction 28 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x2feef2ec -> target 0x13a (PUSH at PC 0x323) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x308657d7 at instruction 33 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x308657d7 -> target 0x135 (PUSH at PC 0x32e) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x33ee5f35 at instruction 38 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x33ee5f35 -> target 0x130 (PUSH at PC 0x339) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x3ccfd60b at instruction 43 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x3ccfd60b -> target 0x12b (PUSH at PC 0x344) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x5a4fd645 at instruction 48 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x5a4fd645 -> target 0x126 (PUSH at PC 0x34f) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x80f323a7 at instruction 53 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x80f323a7 -> target 0x121 (PUSH at PC 0x35a) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x81972d00 at instruction 58 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x81972d00 -> target 0x11c (PUSH at PC 0x365) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x8677ab23 at instruction 63 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x8677ab23 -> target 0x117 (PUSH at PC 0x370) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x8bd03d0a at instruction 68 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x8bd03d0a -> target 0x112 (PUSH at PC 0x37b) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0x9940686e at instruction 73 -DEBUG azoth_core::detection::dispatcher: Paired selector 0x9940686e -> target 0x10d (PUSH at PC 0x386) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xa65e2cfd at instruction 78 -DEBUG azoth_core::detection::dispatcher: Paired selector 0xa65e2cfd -> target 0x108 (PUSH at PC 0x391) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xcb766a56 at instruction 83 -DEBUG azoth_core::detection::dispatcher: Paired selector 0xcb766a56 -> target 0x103 (PUSH at PC 0x39c) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xd415b3f9 at instruction 88 -DEBUG azoth_core::detection::dispatcher: Paired selector 0xd415b3f9 -> target 0xfe (PUSH at PC 0x3a7) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xd4899a62 at instruction 93 -DEBUG azoth_core::detection::dispatcher: Paired selector 0xd4899a62 -> target 0xf9 (PUSH at PC 0x3b2) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xede7f6a3 at instruction 98 -DEBUG azoth_core::detection::dispatcher: Paired selector 0xede7f6a3 -> target 0xf4 (PUSH at PC 0x3bd) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xf3a504f2 at instruction 103 -DEBUG azoth_core::detection::dispatcher: Paired selector 0xf3a504f2 -> target 0xef (PUSH at PC 0x3c8) -DEBUG azoth_core::detection::dispatcher: Found selector candidate 0xfe03a460 at instruction 107 -DEBUG azoth_core::detection::dispatcher: Paired selector 0xfe03a460 -> target 0xea (PUSH at PC 0x3d2) -DEBUG azoth_core::detection::dispatcher: Stopping at REVERT after finding 19 selectors -DEBUG azoth_core::detection::dispatcher: Stack tracking found 19 selector-target pairs -DEBUG azoth_core::detection::dispatcher: Found dispatcher preamble at instruction 0 (free memory pointer setup) -DEBUG azoth_core::detection::dispatcher: Dispatcher range: preamble starts at 0, extraction at 13, selectors end at ~107 -DEBUG azoth_transform::obfuscator: Function dispatcher detected with 19 selectors - adding FunctionDispatcher transform -DEBUG azoth_transform::obfuscator: Applying 5 transforms -DEBUG azoth_transform::obfuscator: Transform 0: FunctionDispatcher (pre: 775 blocks, 6264 instructions) -DEBUG azoth_transform::function_dispatcher: Prepared multi-tier dispatcher blueprint tiers=20 selectors=19 assignments=19 -DEBUG azoth_transform::function_dispatcher::patterns::layout: multi-tier: highest existing pc end=0x2dce, runtime_bounds=Some((751, 11726)) -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2dde decoy_start=0x2dd0 stub_target_rel=0x2ae1 stub_width=2 -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2df2 decoy_start=0x2de5 stub_target_rel=0x2af6 stub_width=2 -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2e07 decoy_start=0x2df9 stub_target_rel=0x2b0a stub_width=2 -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2e1b decoy_start=0x2e0e stub_target_rel=0x2b1f stub_width=2 -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2e2f decoy_start=0x2e22 stub_target_rel=0x2b33 stub_width=2 -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2e44 decoy_start=0x2e36 stub_target_rel=0x2b47 stub_width=2 -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2e59 decoy_start=0x2e4b stub_target_rel=0x2b5c stub_width=2 -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2e6e decoy_start=0x2e60 stub_target_rel=0x2b71 stub_width=2 -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2e83 decoy_start=0x2e75 stub_target_rel=0x2b86 stub_width=2 -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2e98 decoy_start=0x2e8a stub_target_rel=0x2b9b stub_width=2 -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2ead decoy_start=0x2e9f stub_target_rel=0x2bb0 stub_width=2 -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2ec2 decoy_start=0x2eb4 stub_target_rel=0x2bc5 stub_width=2 -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2ed7 decoy_start=0x2ec9 stub_target_rel=0x2bda stub_width=2 -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2eeb decoy_start=0x2ede stub_target_rel=0x2bef stub_width=2 -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2f00 decoy_start=0x2ef2 stub_target_rel=0x2c03 stub_width=2 -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2f15 decoy_start=0x2f07 stub_target_rel=0x2c18 stub_width=2 -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2f2a decoy_start=0x2f1c stub_target_rel=0x2c2d stub_width=2 -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2f3f decoy_start=0x2f31 stub_target_rel=0x2c42 stub_width=2 -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating stub block stub_start=0x2f53 decoy_start=0x2f46 stub_target_rel=0x2c57 stub_width=2 -DEBUG azoth_transform::function_dispatcher::token: Token generation: 1 selector(s) must preserve byte[0]=0x80 -DEBUG azoth_transform::function_dispatcher::token: Token generation: 1 selector(s) must preserve byte[0]=0x99 -DEBUG azoth_transform::function_dispatcher::token: Token generation: 1 selector(s) must preserve byte[0]=0xd4 -DEBUG azoth_transform::function_dispatcher::token: Token generation: 1 selector(s) must preserve byte[2]=0x6a -DEBUG azoth_transform::function_dispatcher::token: Token generation: 1 selector(s) must preserve byte[0]=0x30 -DEBUG azoth_transform::function_dispatcher::token: Token generation: 1 selector(s) must preserve byte[2]=0x04 -DEBUG azoth_transform::function_dispatcher::token: Token generation: 1 selector(s) must preserve byte[2]=0xab -DEBUG azoth_transform::function_dispatcher::token: Token generation: 1 selector(s) must preserve byte[2]=0xc0 -DEBUG azoth_transform::function_dispatcher::token: Token generation: 1 selector(s) must preserve byte[2]=0xd6 -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x046f7da2 start_pc=0x2f58 stub_pc=0x2e44 invalid_pc=0x2e34 has_pattern=true -DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x046f7da2 start_pc=0x2f58 end_pc=0x2f6a instruction_count=10 opcodes=["JUMPDEST", "PUSH(2)", "SLOAD", "ISZERO", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "PUSH(2)", "JUMP"] -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x1aa7c0ec start_pc=0x2f6a stub_pc=0x2e83 invalid_pc=0x2e73 has_pattern=true -DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x1aa7c0ec start_pc=0x2f6a end_pc=0x2f81 instruction_count=14 opcodes=["JUMPDEST", "PUSH(1)", "CALLDATALOAD", "PUSH(1)", "BYTE", "PUSH(1)", "EQ", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "JUMPDEST", "PUSH(2)", "JUMP"] -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x2feef2ec start_pc=0x2f81 stub_pc=0x2e6e invalid_pc=0x2e5e has_pattern=true -DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x2feef2ec start_pc=0x2f81 end_pc=0x2f93 instruction_count=10 opcodes=["JUMPDEST", "PUSH(2)", "SLOAD", "ISZERO", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "PUSH(2)", "JUMP"] -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x308657d7 start_pc=0x2f93 stub_pc=0x2f15 invalid_pc=0x2f05 has_pattern=true -DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x308657d7 start_pc=0x2f93 end_pc=0x2faa instruction_count=14 opcodes=["JUMPDEST", "PUSH(1)", "CALLDATALOAD", "PUSH(1)", "BYTE", "PUSH(1)", "EQ", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "JUMPDEST", "PUSH(2)", "JUMP"] -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x33ee5f35 start_pc=0x2faa stub_pc=0x2e98 invalid_pc=0x2e88 has_pattern=true -DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x33ee5f35 start_pc=0x2faa end_pc=0x2fbc instruction_count=10 opcodes=["JUMPDEST", "PUSH(2)", "SLOAD", "ISZERO", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "PUSH(2)", "JUMP"] -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x3ccfd60b start_pc=0x2fbc stub_pc=0x2dde invalid_pc=0x2dce has_pattern=true -DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x3ccfd60b start_pc=0x2fbc end_pc=0x2fd3 instruction_count=14 opcodes=["JUMPDEST", "PUSH(1)", "CALLDATALOAD", "PUSH(1)", "BYTE", "PUSH(1)", "EQ", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "JUMPDEST", "PUSH(2)", "JUMP"] -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x5a4fd645 start_pc=0x2fd3 stub_pc=0x2ead invalid_pc=0x2e9d has_pattern=true -DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x5a4fd645 start_pc=0x2fd3 end_pc=0x2fe5 instruction_count=10 opcodes=["JUMPDEST", "PUSH(2)", "SLOAD", "ISZERO", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "PUSH(2)", "JUMP"] -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x80f323a7 start_pc=0x2fe5 stub_pc=0x2ec2 invalid_pc=0x2eb2 has_pattern=true -DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x80f323a7 start_pc=0x2fe5 end_pc=0x2ffc instruction_count=14 opcodes=["JUMPDEST", "PUSH(1)", "CALLDATALOAD", "PUSH(1)", "BYTE", "PUSH(1)", "EQ", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "JUMPDEST", "PUSH(2)", "JUMP"] -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x81972d00 start_pc=0x2ffc stub_pc=0x2f2a invalid_pc=0x2f1a has_pattern=true -DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x81972d00 start_pc=0x2ffc end_pc=0x300e instruction_count=10 opcodes=["JUMPDEST", "PUSH(2)", "SLOAD", "ISZERO", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "PUSH(2)", "JUMP"] -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x8677ab23 start_pc=0x300e stub_pc=0x2f00 invalid_pc=0x2ef0 has_pattern=true -DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x8677ab23 start_pc=0x300e end_pc=0x3025 instruction_count=14 opcodes=["JUMPDEST", "PUSH(1)", "CALLDATALOAD", "PUSH(1)", "BYTE", "PUSH(1)", "EQ", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "JUMPDEST", "PUSH(2)", "JUMP"] -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x8bd03d0a start_pc=0x3025 stub_pc=0x2f3f invalid_pc=0x2f2f has_pattern=true -DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x8bd03d0a start_pc=0x3025 end_pc=0x3037 instruction_count=10 opcodes=["JUMPDEST", "PUSH(2)", "SLOAD", "ISZERO", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "PUSH(2)", "JUMP"] -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0x9940686e start_pc=0x3037 stub_pc=0x2e07 invalid_pc=0x2df7 has_pattern=true -DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0x9940686e start_pc=0x3037 end_pc=0x304e instruction_count=14 opcodes=["JUMPDEST", "PUSH(1)", "CALLDATALOAD", "PUSH(1)", "BYTE", "PUSH(1)", "EQ", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "JUMPDEST", "PUSH(2)", "JUMP"] -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0xa65e2cfd start_pc=0x304e stub_pc=0x2e59 invalid_pc=0x2e49 has_pattern=true -DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0xa65e2cfd start_pc=0x304e end_pc=0x3060 instruction_count=10 opcodes=["JUMPDEST", "PUSH(2)", "SLOAD", "ISZERO", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "PUSH(2)", "JUMP"] -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0xcb766a56 start_pc=0x3060 stub_pc=0x2ed7 invalid_pc=0x2ec7 has_pattern=true -DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0xcb766a56 start_pc=0x3060 end_pc=0x3077 instruction_count=14 opcodes=["JUMPDEST", "PUSH(1)", "CALLDATALOAD", "PUSH(1)", "BYTE", "PUSH(1)", "EQ", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "JUMPDEST", "PUSH(2)", "JUMP"] -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0xd415b3f9 start_pc=0x3077 stub_pc=0x2eeb invalid_pc=0x2edc has_pattern=true -DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0xd415b3f9 start_pc=0x3077 end_pc=0x3089 instruction_count=10 opcodes=["JUMPDEST", "PUSH(2)", "SLOAD", "ISZERO", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "PUSH(2)", "JUMP"] -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0xd4899a62 start_pc=0x3089 stub_pc=0x2e2f invalid_pc=0x2e20 has_pattern=true -DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0xd4899a62 start_pc=0x3089 end_pc=0x30a0 instruction_count=14 opcodes=["JUMPDEST", "PUSH(1)", "CALLDATALOAD", "PUSH(1)", "BYTE", "PUSH(1)", "EQ", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "JUMPDEST", "PUSH(2)", "JUMP"] -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0xede7f6a3 start_pc=0x30a0 stub_pc=0x2e1b invalid_pc=0x2e0c has_pattern=true -DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0xede7f6a3 start_pc=0x30a0 end_pc=0x30b2 instruction_count=10 opcodes=["JUMPDEST", "PUSH(2)", "SLOAD", "ISZERO", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "PUSH(2)", "JUMP"] -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0xf3a504f2 start_pc=0x30b2 stub_pc=0x2df2 invalid_pc=0x2de3 has_pattern=true -DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0xf3a504f2 start_pc=0x30b2 end_pc=0x30c9 instruction_count=14 opcodes=["JUMPDEST", "PUSH(1)", "CALLDATALOAD", "PUSH(1)", "BYTE", "PUSH(1)", "EQ", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "JUMPDEST", "PUSH(2)", "JUMP"] -DEBUG azoth_transform::function_dispatcher::patterns::layout: Creating selector controller selector=0xfe03a460 start_pc=0x30c9 stub_pc=0x2f53 invalid_pc=0x2f44 has_pattern=true -DEBUG azoth_transform::function_dispatcher::patterns::layout: Controller created selector=0xfe03a460 start_pc=0x30c9 end_pc=0x30db instruction_count=10 opcodes=["JUMPDEST", "PUSH(2)", "SLOAD", "ISZERO", "PUSH(2)", "JUMPI", "PUSH(2)", "JUMP", "PUSH(2)", "JUMP"] -DEBUG azoth_transform::function_dispatcher: Function dispatcher obfuscated via multi-tier layout -DEBUG azoth_transform::obfuscator: Result: changed=true -DEBUG azoth_transform::obfuscator: Post: 851 blocks (+76), 6737 instructions (+473) -DEBUG azoth_transform::obfuscator: Transform 1: ArithmeticChain (pre: 851 blocks, 6737 instructions) -DEBUG azoth_transform::arithmetic_chain: === ArithmeticChain Transform Start === -DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0x448 - zero value -DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0x4c5 - zero value -DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0x560 - zero value -DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0x5fe - zero value -DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0x6b2 - zero value -DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0x704 - zero value -DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0x805 - zero value -DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0x8e3 - zero value -DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0x98e - zero value -DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0xa4c - zero value -DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0xb0c - zero value -DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0xbdc - zero value -DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0xbff - zero value -DEBUG azoth_transform::arithmetic_chain: Skipping PUSH32 at PC 0xc21 - zero value -DEBUG azoth_transform::arithmetic_chain: Found PUSH19 target at PC 0xdb5, node NodeIndex(200), value: 0x10dbdb9d1c9858dd081b9bdd08199d5b991959 -DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0xdf7, node NodeIndex(203), value: 0x54686520636f6e747261637420776173206e6f742066756e646564206f722068 -DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0xe1d, node NodeIndex(203), value: 0x6173206265656e20647261696e656420616c7265616479000000000000000000 -DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0xfa1, node NodeIndex(230), value: 0x426f6e64206d757374206265206174206c656173742068616c66206f66207265 -DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x1001, node NodeIndex(233), value: 0x416e6f74686572206578656375746f7220697320616c726561647920626f6e64 -DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x1058, node NodeIndex(236), value: 0x436f6e747261637420616c72656164792066756e646564000000000000000000 -DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x10f0, node NodeIndex(242), value: 0x5061796d656e7420616d6f756e74206d757374206265206e6f6e2d7a65726f00 -DEBUG azoth_transform::arithmetic_chain: Found PUSH20 target at PC 0x1215, node NodeIndex(260), value: 0x15185c99d95d08189b1bd8dac81d1bdbc81bdb19 -DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x1375, node NodeIndex(279), value: 0x48656164657220626c6f636b206e756d626572206d69736d6174636800000000 -DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x13c1, node NodeIndex(282), value: 0x496e76616c69642072656365697074204d50542070726f6f6600000000000000 -DEBUG azoth_transform::arithmetic_chain: Found PUSH22 target at PC 0x140d, node NodeIndex(285), value: 0x125b9d985b1a5908151c985b9cd9995c88195d995b9d -DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x1478, node NodeIndex(289), value: 0x43616e6e6f74207265736574207768696c6520626f6e64206973206163746976 -DEBUG azoth_transform::arithmetic_chain: Found PUSH16 target at PC 0x14fc, node NodeIndex(298), value: 0x125b9d985b1a5908149314081b1a5cdd -DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x16bb, node NodeIndex(338), value: 0x496e76616c6964207265636569707473526f6f7420524c5020656e636f64696e -DEBUG azoth_transform::arithmetic_chain: Found PUSH19 target at PC 0x17f4, node NodeIndex(358), value: 0x0496e76616c6964207265636569707420524c5 -DEBUG azoth_transform::arithmetic_chain: Found PUSH16 target at PC 0x1836, node NodeIndex(361), value: 0x0496e76616c6964206c6f677320524c5 -DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x19de, node NodeIndex(394), value: 0x524c50206f6666736574206f7574206f6620626f756e64730000000000000000 -DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x1d61, node NodeIndex(460), value: 0x457870656374656420737472696e67206974656d2c20676f74206c6973740000 -DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x1dad, node NodeIndex(463), value: 0x457870656374656420524c50206c69737420666f722070726f6f66206e6f6465 -DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x25c0, node NodeIndex(632), value: 0x496e76616c6964206164647265737320524c5020656e636f64696e6700000000 -DEBUG azoth_transform::arithmetic_chain: Found PUSH21 target at PC 0x264d, node NodeIndex(638), value: 0x57726f6e67206576656e74207369676e6174757265 -DEBUG azoth_transform::arithmetic_chain: Found PUSH19 target at PC 0x2691, node NodeIndex(641), value: 0x0a8de40c2c8c8e4cae6e640dad2e6dac2e8c6d -DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x275d, node NodeIndex(648), value: 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef -DEBUG azoth_transform::arithmetic_chain: Found PUSH32 target at PC 0x2da3, node NodeIndex(773), value: 0x457870656374656420737472696e6720646174612c20676f74206c6973740000 -DEBUG azoth_transform::arithmetic_chain: Found 24 PUSH targets for transformation -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via CODECOPY at offset 0 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via CODECOPY at offset 32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via CODECOPY at offset 64 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 7 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 8 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via CODECOPY at offset 96 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via CODECOPY at offset 128 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via CODECOPY at offset 160 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 7 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via CODECOPY at offset 192 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via CODECOPY at offset 224 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 7 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 8 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 7 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 8 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 7 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via CODECOPY at offset 256 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 7 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 8 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via CODECOPY at offset 288 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 7 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via CODECOPY at offset 320 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via CODECOPY at offset 352 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via CODECOPY at offset 384 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via CODECOPY at offset 416 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 7 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 8 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 4 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 5 via CODECOPY at offset 448 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 6 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 7 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 3 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 0 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 1 via CODECOPY at offset 480 -DEBUG azoth_transform::arithmetic_chain::scatter: Scattered value 2 via inline PUSH32 -DEBUG azoth_transform::arithmetic_chain: Chain: 4 values, 3 ops, load_size=44, ops_size=5, chain_size=49, original=20, growth=29 -DEBUG azoth_transform::arithmetic_chain: Chain: 6 values, 5 ops, load_size=66, ops_size=5, chain_size=71, original=33, growth=38 -DEBUG azoth_transform::arithmetic_chain: Chain: 9 values, 8 ops, load_size=99, ops_size=11, chain_size=110, original=33, growth=77 -DEBUG azoth_transform::arithmetic_chain: Chain: 3 values, 2 ops, load_size=33, ops_size=2, chain_size=35, original=33, growth=2 -DEBUG azoth_transform::arithmetic_chain: Chain: 8 values, 7 ops, load_size=88, ops_size=7, chain_size=95, original=33, growth=62 -DEBUG azoth_transform::arithmetic_chain: Chain: 3 values, 2 ops, load_size=33, ops_size=3, chain_size=36, original=33, growth=3 -DEBUG azoth_transform::arithmetic_chain: Chain: 6 values, 5 ops, load_size=66, ops_size=8, chain_size=74, original=33, growth=41 -DEBUG azoth_transform::arithmetic_chain: Chain: 9 values, 8 ops, load_size=99, ops_size=9, chain_size=108, original=21, growth=87 -DEBUG azoth_transform::arithmetic_chain: Chain: 9 values, 8 ops, load_size=99, ops_size=11, chain_size=110, original=33, growth=77 -DEBUG azoth_transform::arithmetic_chain: Chain: 8 values, 7 ops, load_size=88, ops_size=9, chain_size=97, original=33, growth=64 -DEBUG azoth_transform::arithmetic_chain: Chain: 7 values, 6 ops, load_size=77, ops_size=9, chain_size=86, original=23, growth=63 -DEBUG azoth_transform::arithmetic_chain: Chain: 9 values, 8 ops, load_size=99, ops_size=12, chain_size=111, original=33, growth=78 -DEBUG azoth_transform::arithmetic_chain: Chain: 7 values, 6 ops, load_size=77, ops_size=7, chain_size=84, original=17, growth=67 -DEBUG azoth_transform::arithmetic_chain: Chain: 6 values, 5 ops, load_size=66, ops_size=7, chain_size=73, original=33, growth=40 -DEBUG azoth_transform::arithmetic_chain: Chain: 3 values, 2 ops, load_size=33, ops_size=2, chain_size=35, original=20, growth=15 -DEBUG azoth_transform::arithmetic_chain: Chain: 8 values, 7 ops, load_size=88, ops_size=10, chain_size=98, original=17, growth=81 -DEBUG azoth_transform::arithmetic_chain: Chain: 3 values, 2 ops, load_size=33, ops_size=3, chain_size=36, original=33, growth=3 -DEBUG azoth_transform::arithmetic_chain: Chain: 5 values, 4 ops, load_size=55, ops_size=6, chain_size=61, original=33, growth=28 -DEBUG azoth_transform::arithmetic_chain: Chain: 5 values, 4 ops, load_size=55, ops_size=5, chain_size=60, original=33, growth=27 -DEBUG azoth_transform::arithmetic_chain: Chain: 3 values, 2 ops, load_size=33, ops_size=3, chain_size=36, original=33, growth=3 -DEBUG azoth_transform::arithmetic_chain: Chain: 9 values, 8 ops, load_size=99, ops_size=10, chain_size=109, original=22, growth=87 -DEBUG azoth_transform::arithmetic_chain: Chain: 8 values, 7 ops, load_size=88, ops_size=10, chain_size=98, original=20, growth=78 -DEBUG azoth_transform::arithmetic_chain: Chain: 4 values, 3 ops, load_size=44, ops_size=3, chain_size=47, original=33, growth=14 -DEBUG azoth_transform::arithmetic_chain: Chain: 3 values, 2 ops, load_size=33, ops_size=2, chain_size=35, original=33, growth=2 -DEBUG azoth_transform::arithmetic_chain: Runtime length estimate: base=11756, growth=1066, total=12822 -DEBUG azoth_transform::arithmetic_chain: Data section: 512 bytes -DEBUG azoth_transform::arithmetic_chain: === ArithmeticChain Transform Complete === -DEBUG azoth_transform::obfuscator: Result: changed=true -DEBUG azoth_transform::obfuscator: Post: 851 blocks (+0), 7097 instructions (+360) -DEBUG azoth_transform::obfuscator: Transform 2: PushSplit (pre: 851 blocks, 7097 instructions) -DEBUG azoth_transform::push_split: PushSplit: scanning for eligible PUSH4–PUSH16 literals -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2ef -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x3d9 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x3de -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x3e3 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x3e8 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x3ed -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x3f2 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x3f7 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x3fc -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x401 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x406 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x40b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x410 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x415 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x41a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x41f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x424 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x429 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x42e -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x433 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x439 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x444 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x487 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x48d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x4af -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x4b5 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x4e9 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x4ef -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x50b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x511 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x528 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x52e -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x539 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x54d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x556 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x588 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x590 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x598 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x5ac -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x5bc -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x5c5 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x5d3 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x5fa -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x630 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x635 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x644 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x64e -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x658 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x65f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x664 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x66a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x680 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x686 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x69d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x6a3 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x6ae -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x6f0 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x6f6 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x734 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x73a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x751 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x757 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x763 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x782 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x787 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x78d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x791 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x796 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x7a5 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x7ad -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x7ba -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x7c0 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x7cf -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x7d4 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x830 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x838 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x857 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x85c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x861 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x870 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x879 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x87e -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x88a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x89d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x8a2 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x8aa -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x8b0 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x8ba -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x8c0 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x8cc -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x90b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x921 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x926 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x931 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x93c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x944 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x949 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x95d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x98a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x9c0 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x9c4 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x9d8 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x9e7 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x9f0 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x9f5 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x9fb -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xa06 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xa19 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xa1f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xa36 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xa3c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xa70 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xa76 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xa82 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xa94 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xaa7 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xacf -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xae9 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xaf2 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xafe -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb0b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb33 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb43 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb50 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb57 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb63 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb70 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb76 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb7c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb89 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xb8f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xba5 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xbb9 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xbc3 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xbcb -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xbd0 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xbd5 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xc47 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xc4c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xc5d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xc66 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xc80 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xc89 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xc99 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xca2 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xcd9 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xced -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xcf2 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xcfe -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xd05 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xd0b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xd2a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xd30 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xd47 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xd4d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xd93 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xd99 -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0x8c8ff3ff65cb530b into parts=^0xed8ed47a17f90607 ^0x3cecbd313687c975 ^0x4a98a79091b2abac ^0x17753d24d50737d5 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: MLOAD | pc=0x0: PUSH8 8c8ff3ff65cb530b] after=[pc=0x0: CODECOPY | pc=0x0: PUSH1 00 | pc=0x0: MLOAD | pc=0x0: PUSH8 ed8ed47a17f90607 | pc=0x9: XOR | pc=0xa: PUSH8 3cecbd313687c975] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0x76261377 into parts=-0xf726c5b5 -0x30bb295a -0x61f7fd7a -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: XOR | pc=0x0: PUSH4 76261377] after=[pc=0x1e: PUSH8 17753d24d50737d5 | pc=0x27: XOR | pc=0x0: XOR | pc=0x0: PUSH4 f726c5b5 | pc=0x5: SUB | pc=0x6: PUSH4 30bb295a] -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xdd5 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xddb -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0x6e955fa1a1a82fe1defb7698c66b6889 into parts=+0x1f10a20087de46a79e5aead386db0ebf -0x62ac9df78db7876ec19fc4cf321b3430 -0xfe0c7379090734ecb8b5a798f446c96a -0x4fc230ee4f775a6a450a07d29a0da89c -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: XOR | pc=0x0: PUSH16 6e955fa1a1a82fe1defb7698c66b6889] after=[pc=0x0: MUL | pc=0x0: PUSH2 6a8d | pc=0x0: XOR | pc=0x0: PUSH16 1f10a20087de46a79e5aead386db0ebf | pc=0x11: ADD | pc=0x12: PUSH16 62ac9df78db7876ec19fc4cf321b3430] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0x0e48abd7a398c7c3 into parts=+0x8e7f20391b10fd51 +0x25ef6125332872a9 +0x59da2a79555f57c9 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: PUSH32 10e5a42ca5d4250ac9312dcbc65ee6ff7882a5add19612eadb13e57f3c0fb850 | pc=0x0: PUSH8 0e48abd7a398c7c3] after=[pc=0xe1b: ADD | pc=0xe1c: MSTORE | pc=0x0: PUSH32 10e5a42ca5d4250ac9312dcbc65ee6ff7882a5add19612eadb13e57f3c0fb850 | pc=0x0: PUSH8 8e7f20391b10fd51 | pc=0x9: ADD | pc=0xa: PUSH8 25ef6125332872a9] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0x227f8631 into parts=-0x70d06fb7 -0x33208199 +0xb21d1ffd +0x14535784 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH4 227f8631] after=[pc=0x14: PUSH8 59da2a79555f57c9 | pc=0x1d: ADD | pc=0x0: ADD | pc=0x0: PUSH4 70d06fb7 | pc=0x5: SUB | pc=0x6: PUSH4 33208199] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0x1e1e0794a3f0a405 into parts=^0x7bca71fa3c14b204 ^0x65d4766e9fe41601 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: MUL | pc=0x0: PUSH8 1e1e0794a3f0a405] after=[pc=0x0: PUSH1 0b | pc=0x0: MUL | pc=0x0: PUSH8 7bca71fa3c14b204 | pc=0x9: XOR ] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0x6f4a64a805122a66 into parts=+0x24e922842da5f11c +0xa5e4d6e6399e26a4 +0xa47c6b3d9dce12a6 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: SUB | pc=0x0: PUSH8 6f4a64a805122a66] after=[pc=0x0: PUSH2 ec52 | pc=0x0: SWAP(1) | pc=0x0: SUB | pc=0x0: PUSH8 24e922842da5f11c | pc=0x9: ADD | pc=0xa: PUSH8 a5e4d6e6399e26a4] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0xfb12563c into parts=+0x7cfde2d2 +0x4e545952 +0x378023a1 +0xf83ff677 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: XOR | pc=0x0: PUSH4 fb12563c] after=[pc=0x0: XOR | pc=0x0: PUSH32 d8ad2d894578f956c16e96a8e87688da4cf16c1d6016a9184a5222e63ab20833 | pc=0x0: XOR | pc=0x0: PUSH4 7cfde2d2 | pc=0x5: ADD | pc=0x6: PUSH4 4e545952] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0xe48 width=4 value=0x4e487b71 into parts=^0x1e31fd4a ^0xfabd695a ^0xaac4ef61 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0xe47: JUMPDEST | pc=0xe48: PUSH4 4e487b71] after=[pc=0xe47: JUMPDEST | pc=0xe48: PUSH4 1e31fd4a | pc=0xe4d: XOR | pc=0xe4e: PUSH4 fabd695a | pc=0xe53: XOR | pc=0xe54: PUSH4 aac4ef61] -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe5b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe69 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe6a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe6f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe7c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe7d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe8a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe8b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe97 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe98 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xe9e -DEBUG azoth_transform::push_split: PushSplit: split at pc=0xedd width=4 value=0x4e487b71 into parts=-0x51a87fa7 -0x600f04e8 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0xedc: JUMPDEST | pc=0xedd: PUSH4 4e487b71] after=[pc=0xedc: JUMPDEST | pc=0xedd: PUSH4 51a87fa7 | pc=0xee2: SUB | pc=0xee3: PUSH4 600f04e8] -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xef0 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xf0e -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xf12 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xf17 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xf23 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xf2d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xf3a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xf40 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xf7f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xf85 -DEBUG azoth_transform::push_split: PushSplit: split at pc=0xfc7 width=11 value=0x1dd85c9908185b5bdd5b9d into parts=+0xef17fe807e0bd0d15c04dc -0xd5f700e98f2664b3681653 -0xfb48a0fde6cd10c21692ec -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0xfc6: MSTORE | pc=0xfc7: PUSH11 1dd85c9908185b5bdd5b9d] after=[pc=0xfc4: DUP(3) | pc=0xfc5: ADD | pc=0xfc6: MSTORE | pc=0xfc7: PUSH11 ef17fe807e0bd0d15c04dc | pc=0xfd3: ADD | pc=0xfd4: PUSH11 d5f700e98f2664b3681653] -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xfdf -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0xfe5 -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0x2083eaa99cd4a294b34f5a14fdafb5df into parts=^0xfe90cdec2f75531b29219d73116bc095 ^0xe60a6c05ae73c7647e5104e0304e65d5 ^0x4450f181e6f88981d639826f70020579 ^0x7c49bac1fb2abf6a320641e8ac8815e6 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: PUSH32 15cc1956c2cc20b556d2cacb6c6ac1105674e5a363d5be58c0c04447cc1cd9cc | pc=0x0: PUSH16 2083eaa99cd4a294b34f5a14fdafb5df] after=[pc=0xfff: ADD | pc=0x1000: MSTORE | pc=0x0: PUSH32 15cc1956c2cc20b556d2cacb6c6ac1105674e5a363d5be58c0c04447cc1cd9cc | pc=0x0: PUSH16 fe90cdec2f75531b29219d73116bc095 | pc=0x11: XOR | pc=0x12: PUSH16 e60a6c05ae73c7647e5104e0304e65d5] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0x6db9485b0dda7a289f06c4ad0b97f8fc into parts=+0xe2f53760ae9b3ecb3c2e50926cfa7b19 +0x82a5ff8598b80c3492a7c7c72ed8c403 -0xece8dbfd72bca90640adbc131c961a31 -0x0af9128dc6bc27d0ef21979973a52bef -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH16 6db9485b0dda7a289f06c4ad0b97f8fc] after=[pc=0x36: PUSH16 7c49bac1fb2abf6a320641e8ac8815e6 | pc=0x47: XOR | pc=0x0: ADD | pc=0x0: PUSH16 e2f53760ae9b3ecb3c2e50926cfa7b19 | pc=0x11: ADD | pc=0x12: PUSH16 82a5ff8598b80c3492a7c7c72ed8c403] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0xfa2e9a05 into parts=^0x15434c2b ^0xef6dd62e -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: MUL | pc=0x0: PUSH4 fa2e9a05] after=[pc=0x0: PUSH1 03 | pc=0x0: MUL | pc=0x0: PUSH4 15434c2b | pc=0x5: XOR ] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0xc8a2a8dd22fba0f3924666421c959c55 into parts=+0x73bbfbca09d80b53fb5d2535e4172d3f +0xfa976b454b4c498d68ac23c34641c9cc +0x5a4f41cdcdd74c122e3d1d48f23ca54a -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: OR | pc=0x0: PUSH16 c8a2a8dd22fba0f3924666421c959c55] after=[pc=0x0: PUSH1 00 | pc=0x0: MLOAD | pc=0x0: OR | pc=0x0: PUSH16 73bbfbca09d80b53fb5d2535e4172d3f | pc=0x11: ADD | pc=0x12: PUSH16 fa976b454b4c498d68ac23c34641c9cc] -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1036 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x103c -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0xc2ac0f5169522bd8142b9c43735d2bb8 into parts=^0x4fc19089ddec2007f4634aa9fd24d91b ^0xd1f79b6194ffe11f5a462b83c19233a8 ^0x5c9a04b92041eac0ba0efd694febc10b -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: PUSH32 436f6e747261637420616c7265616479e31284bfcdb78fd8142b9c4454f0d90e | pc=0x0: PUSH16 c2ac0f5169522bd8142b9c43735d2bb8] after=[pc=0x1056: ADD | pc=0x1057: MSTORE | pc=0x0: PUSH32 436f6e747261637420616c7265616479e31284bfcdb78fd8142b9c4454f0d90e | pc=0x0: PUSH16 4fc19089ddec2007f4634aa9fd24d91b | pc=0x11: XOR | pc=0x12: PUSH16 d1f79b6194ffe11f5a462b83c19233a8] -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1082 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1088 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x10ce -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x10d4 -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0x480fe8e13dfb11634a56f6ed0585454c into parts=^0x534a8d0914ba721f9c1f2c9a85f6c31f ^0x1273008353f9c6508299a2d560199559 ^0x9aeff55dd9a4f67868cd91eb8d398cd9 ^0x93d99036a31c53543c1de9496d539fd3 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH16 480fe8e13dfb11634a56f6ed0585454c] after=[pc=0x0: DIV | pc=0x0: PUSH2 6645 | pc=0x0: ADD | pc=0x0: PUSH16 534a8d0914ba721f9c1f2c9a85f6c31f | pc=0x11: XOR | pc=0x12: PUSH16 1273008353f9c6508299a2d560199559] -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x111a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1127 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x112a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1132 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1138 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x117d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1183 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x11c9 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x11d7 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x11d8 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x11e5 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x11e6 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x11f2 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x11f3 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x11f9 -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0x70a7154d75da5752 into parts=+0xb09b6550b0b3111c -0x4a5927193ab4165e -0xf59b28ea0024a36c -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: AND | pc=0x0: PUSH8 70a7154d75da5752] after=[pc=0x0: MUL | pc=0x0: PUSH32 6f49dbf72418ef9acbfe3063ddbd7fddfdffebffdbdbffffdfdb8eef5beda67f | pc=0x0: AND | pc=0x0: PUSH8 b09b6550b0b3111c | pc=0x9: ADD | pc=0xa: PUSH8 4a5927193ab4165e] -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1236 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x123c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1282 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1294 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x12a7 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x12b4 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x12b5 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x12c5 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x12d1 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x12dd -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x12eb -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x12f9 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1307 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x130d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1353 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1359 -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0xc55beb8f into parts=+0x80d43b29 +0x4487b066 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: AND | pc=0x0: PUSH4 c55beb8f] after=[pc=0x0: PUSH32 b8fbebb7f577eedfd2a40fe7dddbf2fff6671fe3abffcdef7ff7ffffa7ffbff0 | pc=0x0: AND | pc=0x0: PUSH4 80d43b29 | pc=0x5: ADD ] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0x9c96f33b into parts=^0x90d78e9b ^0xe07a73f4 ^0xbe76adcf ^0x524da39b -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: SUB | pc=0x0: PUSH4 9c96f33b] after=[pc=0xb: ADD | pc=0x0: SWAP(1) | pc=0x0: SUB | pc=0x0: PUSH4 90d78e9b | pc=0x5: XOR | pc=0x6: PUSH4 e07a73f4] -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x139f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x13a5 -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0xe3d14b52dcab94be into parts=+0xa4d05a72816e467b -0x9cc28303eed2703d -0x243c8c1bb5f04180 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: PUSH32 d67e1fd60c59571887de9092cd995182a02b0621672578e76a66e56db420d4ec | pc=0x0: PUSH8 e3d14b52dcab94be] after=[pc=0x13bf: ADD | pc=0x13c0: MSTORE | pc=0x0: PUSH32 d67e1fd60c59571887de9092cd995182a02b0621672578e76a66e56db420d4ec | pc=0x0: PUSH8 a4d05a72816e467b | pc=0x9: ADD | pc=0xa: PUSH8 9cc28303eed2703d] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0x88d6e5a62f10211dbdf8c2886e8b7d66 into parts=^0xcb7aa8948e9e0a8892083c229d4ab7a3 ^0x43ac4d32a18e2b952ff0feaaf3c1cac5 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH16 88d6e5a62f10211dbdf8c2886e8b7d66] after=[pc=0x1d: SUB | pc=0x0: ADD | pc=0x0: PUSH16 cb7aa8948e9e0a8892083c229d4ab7a3 | pc=0x11: XOR ] -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x13eb -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x13f1 -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0xae3314b983c157d0 into parts=^0x3edd47452c305361 ^0xa9c7ce544651b9f1 ^0x39299da8e9a0bd40 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: PUSH32 4647ddb50e8ad6a6f11504319aaf4bb83d84303d14cf58881585a25b4daf3a1a | pc=0x0: PUSH8 ae3314b983c157d0] after=[pc=0x140b: ADD | pc=0x140c: MSTORE | pc=0x0: PUSH32 4647ddb50e8ad6a6f11504319aaf4bb83d84303d14cf58881585a25b4daf3a1a | pc=0x0: PUSH8 3edd47452c305361 | pc=0x9: XOR | pc=0xa: PUSH8 a9c7ce544651b9f1] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0x34d4bc9f into parts=^0xcdc15070 ^0x3258a8aa ^0x0ea80f19 ^0xc5e54b5c -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH4 34d4bc9f] after=[pc=0x14: PUSH8 39299da8e9a0bd40 | pc=0x1d: XOR | pc=0x0: ADD | pc=0x0: PUSH4 cdc15070 | pc=0x5: XOR | pc=0x6: PUSH4 3258a8aa] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0x1f81cb582509c83440bfa88bb915cd65 into parts=-0x0df779ba4da27d1de0b8bc5e4f158d96 -0xd286baed8d53baadde879b15f7d4a505 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: SUB | pc=0x0: PUSH16 1f81cb582509c83440bfa88bb915cd65] after=[pc=0x0: SWAP(1) | pc=0x0: SUB | pc=0x0: PUSH16 0df779ba4da27d1de0b8bc5e4f158d96 | pc=0x11: SUB ] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0xd03fbbd85c047a054687ba6d557e572c into parts=+0x3cf1c33323290bc5178e786127398a1b -0x0abd3cc692a8b14a229d9c22e7d0b7be -0x1e1998612d200240d4d2c6d8b6512b68 -0x43db3233075bde34d9965af833994fc9 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: XOR | pc=0x0: PUSH16 d03fbbd85c047a054687ba6d557e572c] after=[pc=0x12: PUSH16 d286baed8d53baadde879b15f7d4a505 | pc=0x23: SUB | pc=0x0: XOR | pc=0x0: PUSH16 3cf1c33323290bc5178e786127398a1b | pc=0x11: ADD | pc=0x12: PUSH16 0abd3cc692a8b14a229d9c22e7d0b7be] -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1430 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1438 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x143d -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0xe6931522350eb326 into parts=+0xb7c34f7f9560b322 -0x3f8d6f9b161baaf8 -0x91a2cac24a365504 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH8 e6931522350eb326] after=[pc=0x0: PUSH32 47616f6eef77a272e5f76574207f6e697def3066ff6e74eba5efcabe0851de5e | pc=0x0: PUSH2 1370 | pc=0x0: ADD | pc=0x0: PUSH8 b7c34f7f9560b322 | pc=0x9: ADD | pc=0xa: PUSH8 3f8d6f9b161baaf8] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0x95e03ee5ef15b097 into parts=+0x2405a5712a2634bb -0x15bfee4c71ce7383 +0xac3506be36b68813 +0xdb6581030007674c -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH8 95e03ee5ef15b097] after=[pc=0x0: SUB | pc=0x0: PUSH2 b7e7 | pc=0x0: ADD | pc=0x0: PUSH8 2405a5712a2634bb | pc=0x9: ADD | pc=0xa: PUSH8 15bfee4c71ce7383] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0xdbc9cc0f0259c6bb into parts=^0xc6f0c93987ab6e03 ^0xc81713fd6b23f41e ^0x0eabbed34475269b ^0xdb85a818aaa47a3d -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH8 dbc9cc0f0259c6bb] after=[pc=0x1e: PUSH8 db6581030007674c | pc=0x27: ADD | pc=0x0: ADD | pc=0x0: PUSH8 c6f0c93987ab6e03 | pc=0x9: XOR | pc=0xa: PUSH8 c81713fd6b23f41e] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0xbc0acbd8 into parts=+0xa781df5f -0xa2a520c1 -0x48d1f2c6 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: AND | pc=0x0: PUSH4 bc0acbd8] after=[pc=0x0: SUB | pc=0x0: PUSH32 53ffeeff6f7c357b7d7bfffffdf7f9fdee75ebeb6f7f6d34eff7f0eb1f7ff5ee | pc=0x0: AND | pc=0x0: PUSH4 a781df5f | pc=0x5: ADD | pc=0x6: PUSH4 a2a520c1] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x14ad width=4 value=0x4e487b71 into parts=+0xfd86ddcf -0x704567f2 -0xf25dfd63 -0x4c9afd09 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x14ac: JUMPDEST | pc=0x14ad: PUSH4 4e487b71] after=[pc=0x14ac: JUMPDEST | pc=0x14ad: PUSH4 fd86ddcf | pc=0x14b2: ADD | pc=0x14b3: PUSH4 704567f2 | pc=0x14b8: SUB | pc=0x14b9: PUSH4 f25dfd63] -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x14c0 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x14c7 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x14c9 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x14ce -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x14d7 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x14da -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x14e0 -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=15 value=0x109c800000480814801000a3632090 into parts=-0xc44de153ba74ac4d50ad69ee687238 -0x2b159eac45434b9e2f42956e346d38 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: AND | pc=0x0: PUSH15 109c800000480814801000a3632090] after=[pc=0x0: PUSH32 fee382e853d0e930c32808fbf9774c516a1bef995b3effce7eb124a70ffb9bfa | pc=0x0: AND | pc=0x0: PUSH15 c44de153ba74ac4d50ad69ee687238 | pc=0x10: SUB ] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0x73a584da into parts=+0x9467835a +0xdf3e0180 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: OR | pc=0x0: PUSH4 73a584da] after=[pc=0x21: SUB | pc=0x0: OR | pc=0x0: PUSH4 9467835a | pc=0x5: ADD ] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0x10511188000800001402140800025414 into parts=+0x047ff6b77e47123de021b1f658247e32 +0xadfdd66b44325cb3c164112c286a903f +0x85573386cdeb666fb5d09b22e9c7234a +0xd87c10de6fa32a9ebcabb5c295ac2259 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: SUB | pc=0x0: PUSH16 10511188000800001402140800025414] after=[pc=0x0: PUSH2 6afd | pc=0x0: SWAP(1) | pc=0x0: SUB | pc=0x0: PUSH16 047ff6b77e47123de021b1f658247e32 | pc=0x11: ADD | pc=0x12: PUSH16 adfdd66b44325cb3c164112c286a903f] -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1519 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x152b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x152c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x153e -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x153f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1551 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1552 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1564 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1565 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1575 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1576 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x157e -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1583 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x158e -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1594 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x15b5 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x15c3 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x15cb -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x15e6 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x15ed -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x160a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1610 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1615 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x161a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1624 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x162d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x163d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1647 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x165f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x166d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1676 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x167b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1689 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1690 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1699 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x169f -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0x10a3d2f0c447ad3c1cfd393e9834f262 into parts=^0x8579f77bd5f8a87b2d3834b0dbb04df1 ^0xfd277a1a80452d2fc560fb4ea561b158 ^0x480982906e6d160051f864cc777e7cc4 ^0x20f4dd01ff973e68a55d920c919b720f -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: AND | pc=0x0: PUSH16 10a3d2f0c447ad3c1cfd393e9834f262] after=[pc=0x0: PUSH32 dd4fe724d77e3c6577302a303c515ffdee9dffb7aff7479ffff31dae7e07efc4 | pc=0x0: PUSH32 fefb63ee6d3ceff15ff62ebbff73dd5be7abfeefaa976ffd7ff67cb6ea567eb7 | pc=0x0: AND | pc=0x0: PUSH16 8579f77bd5f8a87b2d3834b0dbb04df1 | pc=0x11: XOR | pc=0x12: PUSH16 fd277a1a80452d2fc560fb4ea561b158] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=15 value=0x207cc3f217f016c440f5454bf28f1c into parts=^0x153a89a3fc98bbf1c238c91cb9c3bd ^0x2776d84260152a09e9384a7822be76 ^0xff2b9b8ad09eb22d9735a205fae31f ^0xed1b09995be33511fcc0642a9311c8 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH15 207cc3f217f016c440f5454bf28f1c] after=[pc=0x36: PUSH16 20f4dd01ff973e68a55d920c919b720f | pc=0x47: XOR | pc=0x0: ADD | pc=0x0: PUSH15 153a89a3fc98bbf1c238c91cb9c3bd | pc=0x10: XOR | pc=0x11: PUSH15 2776d84260152a09e9384a7822be76] -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x16ef -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1711 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x172c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1733 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1752 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x175b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x177d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1784 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1789 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x178e -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x179c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x17a3 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x17ab -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x17c1 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x17c9 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x17cf -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x17d2 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x17d8 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1814 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x181a -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0x24d5e0fbccfe24b92bcab1802cd6f3f8 into parts=+0x21171abf88613e2a01946e4fe77981d6 +0x03bec63c449ce68f2a364330455d7222 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: SUB | pc=0x0: PUSH16 24d5e0fbccfe24b92bcab1802cd6f3f8] after=[pc=0x0: SWAP(1) | pc=0x0: SUB | pc=0x0: PUSH16 21171abf88613e2a01946e4fe77981d6 | pc=0x11: ADD ] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0x61e99d534dfbd974 into parts=^0xa6f752de11baaba3 ^0x9a621aeac7cdadfb ^0x5d7cd5679b8cdf2c -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: AND | pc=0x0: PUSH8 61e99d534dfbd974] after=[pc=0x0: ADD | pc=0x0: PUSH32 5fae7d1ab2a311c77de3ee6916332142fa7bfdff3fea5d37efeffbfcffdefd6f | pc=0x0: AND | pc=0x0: PUSH8 a6f752de11baaba3 | pc=0x9: XOR | pc=0xa: PUSH8 9a621aeac7cdadfb] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=15 value=0x10a040164612420606e67422010484 into parts=-0xb43697fe2861de2cd90553215a3b84 -0x3b2927eb918bdfcd201438bca4bff8 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: DIV | pc=0x0: PUSH15 10a040164612420606e67422010484] after=[pc=0x0: SWAP(1) | pc=0x0: DIV | pc=0x0: PUSH15 b43697fe2861de2cd90553215a3b84 | pc=0x10: SUB ] -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1853 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1866 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x186b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1883 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x188b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x18a1 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x18a8 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x18ca -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x18d3 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x18ec -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x18f3 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x190a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1910 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1931 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1939 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1944 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1953 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x195b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1966 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x196c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x197a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1985 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1990 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1997 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x19a0 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x19b5 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x19bc -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x19c2 -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0xc1f1f9be into parts=+0xb499b2de +0x354b71c9 +0x7135c3b5 +0x66d71162 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: AND | pc=0x0: PUSH4 c1f1f9be] after=[pc=0x0: PUSH32 524e582a6f6e667367f4287f7ffda47fe738e2ef7d6e6cf36023f000d9fff9be | pc=0x0: PUSH32 fffcd2f5ef77ff7b7d75a6ef75766a6f6e26737ff5ffe77f9f900f3dc5f1ffff | pc=0x0: AND | pc=0x0: PUSH4 b499b2de | pc=0x5: ADD | pc=0x6: PUSH4 354b71c9] -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a08 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a15 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a26 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a35 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a41 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a4e -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a63 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a69 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a76 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a8b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1a93 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1aa6 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1aab -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1aba -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1ad3 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1ada -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1ae4 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1af0 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b04 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b0a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b1e -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b26 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b39 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b48 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b61 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b6b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b7c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b8d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1b9e -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1baf -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1bb9 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1bc6 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1bd7 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1be1 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1bec -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1bfd -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c0c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c17 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c30 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c37 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c48 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c54 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c61 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c69 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c75 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c8b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c92 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1c9e -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1ca5 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1cae -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1cbe -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1cc6 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1cd2 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1cda -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1cea -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1d04 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1d10 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1d17 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1d37 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1d3e -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0x831021594741f0c2 into parts=+0xed7eb3f2b09df3d2 +0xb177bfc56f5f1ab2 +0xde8d6f9632d53169 +0x058c3e0af46fb0d5 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: PUSH32 457870656374656420737472696e67206974656d2c2067704cc5ac7213e8d27e | pc=0x0: PUSH8 831021594741f0c2] after=[pc=0x1d5f: ADD | pc=0x1d60: MSTORE | pc=0x0: PUSH32 457870656374656420737472696e67206974656d2c2067704cc5ac7213e8d27e | pc=0x0: PUSH8 ed7eb3f2b09df3d2 | pc=0x9: ADD | pc=0xa: PUSH8 b177bfc56f5f1ab2] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0x3896aa66 into parts=+0xefb71aa3 +0x282f7b45 +0x20b0147e -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH4 3896aa66] after=[pc=0x1e: PUSH8 058c3e0af46fb0d5 | pc=0x27: ADD | pc=0x0: ADD | pc=0x0: PUSH4 efb71aa3 | pc=0x5: ADD | pc=0x6: PUSH4 282f7b45] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0xe60e642c6645b754 into parts=^0xf372fbd4ed26d8fa ^0x157c9ff88b636fae -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH8 e60e642c6645b754] after=[pc=0x11: ADD | pc=0x0: ADD | pc=0x0: PUSH8 f372fbd4ed26d8fa | pc=0x9: XOR ] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0x75a6fd35ba07b652 into parts=+0x55312f57fd49bd0d +0x871f88fb91284ef2 -0x41e35209c57106a5 -0x24c669140ef94f08 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: SUB | pc=0x0: PUSH8 75a6fd35ba07b652] after=[pc=0x13: XOR | pc=0x0: SWAP(1) | pc=0x0: SUB | pc=0x0: PUSH8 55312f57fd49bd0d | pc=0x9: ADD | pc=0xa: PUSH8 871f88fb91284ef2] -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1d8b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1d91 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1de1 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e05 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e0d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e28 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e2f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e47 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e53 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e5b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e65 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e77 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e7c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e83 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1e91 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1ea4 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1eb1 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1eb7 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1ecf -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1ed6 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1ee0 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1ee9 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1ef2 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1efa -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f02 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f0b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f17 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f22 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f30 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f3b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f43 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f49 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f4f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f5b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f74 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f79 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f83 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1f89 -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x1fa5 width=15 value=0x0496e76616c6964206c6f6720524c5 into parts=+0xf3a78face89c5563a9c9bf82fc8cf2 +0x10ef57b92e2a40de5cfd36ef0897d3 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x1fa4: MSTORE | pc=0x1fa5: PUSH15 0496e76616c6964206c6f6720524c5] after=[pc=0x1fa3: ADD | pc=0x1fa4: MSTORE | pc=0x1fa5: PUSH15 f3a78face89c5563a9c9bf82fc8cf2 | pc=0x1fb5: ADD ] -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1fc1 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x1fc7 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x200d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2013 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2050 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x207b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2083 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2098 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x209f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x20be -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x20c9 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x20d7 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x20ec -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x20f2 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x20ff -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2105 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2111 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2121 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2130 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x213a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2149 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2155 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2162 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x216a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2175 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x218b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2191 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x219d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x21a4 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x21ad -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x21bc -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x21c4 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x21d0 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x21d8 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x21e7 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2201 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x220d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2214 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2234 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x223a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2242 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x224e -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x225b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2263 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2269 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x227c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2288 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2292 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x229c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x22a5 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x22af -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x22b8 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x22c0 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x22c5 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x22da -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x22db -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x22e9 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x22ff -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2308 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2311 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x231c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2326 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x232c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x233b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2347 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x234f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2355 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2362 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2368 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x237e -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2386 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2391 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2398 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x23a2 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x23aa -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x23bb -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x23c0 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x23cc -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x23e5 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x23ec -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x23f4 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x23fb -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2408 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2414 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2421 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x242f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2437 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x244b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2451 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2465 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2470 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x247a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2484 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2490 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x249b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x24a5 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x24b0 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x24c4 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x24d0 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x24e2 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x24eb -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x24f4 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x250c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2513 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x251c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x252d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2536 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2544 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2559 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2560 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x256a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2573 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x257c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2592 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x259e -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x25ea -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x25f0 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x262b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2631 -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0x4ab91fe3 into parts=+0x504dbcab +0xfa6b6338 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: ADD | pc=0x0: PUSH4 4ab91fe3] after=[pc=0x0: PUSH2 873c | pc=0x0: ADD | pc=0x0: PUSH4 504dbcab | pc=0x5: ADD ] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=8 value=0x088b6de581b00c74 into parts=+0x47194acd5891b72d +0x27729041c4c136a1 -0x2471bd531c712cc8 -0x418eafd67f31b492 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: SUB | pc=0x0: PUSH8 088b6de581b00c74] after=[pc=0xb: ADD | pc=0x0: SWAP(1) | pc=0x0: SUB | pc=0x0: PUSH8 47194acd5891b72d | pc=0x9: ADD | pc=0xa: PUSH8 27729041c4c136a1] -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=16 value=0x3028550830d849650d15de8c0bff9863 into parts=+0xe2bcda79036f3be04f406990e92120ca -0xac1bbc213f69fc9ef5dbdda2617e7495 -0x0678c94f932cf5dc4c4ead627ba313d2 -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: AND | pc=0x0: PUSH16 3028550830d849650d15de8c0bff9863] after=[pc=0x0: ADD | pc=0x0: PUSH32 12478dabdac12bcb3486df777b7f7ee778eda36dffaffb57ef7afded7fceef77 | pc=0x0: AND | pc=0x0: PUSH16 e2bcda79036f3be04f406990e92120ca | pc=0x11: ADD | pc=0x12: PUSH16 ac1bbc213f69fc9ef5dbdda2617e7495] -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x266f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2675 -DEBUG azoth_transform::push_split: PushSplit: split at pc=0x0 width=4 value=0x46ecfba0 into parts=+0xe29621a9 -0x3e229d07 +0xbfe915f4 +0xe290610a -DEBUG azoth_transform::push_split: PushSplit: context before=[pc=0x0: XOR | pc=0x0: PUSH4 46ecfba0] after=[pc=0x0: SUB | pc=0x0: PUSH2 37af | pc=0x0: XOR | pc=0x0: PUSH4 e29621a9 | pc=0x5: ADD | pc=0x6: PUSH4 3e229d07] -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x26b1 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x26b7 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x26f4 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x26fa -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2740 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x27ad -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x27b5 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x27bc -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x27c3 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x27e0 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x27e8 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x27ee -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x27f5 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x27fc -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2803 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x280f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2822 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2829 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x282f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2842 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x284c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2864 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x286d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x287c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2881 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x288b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2898 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x28a8 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x28b7 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x28bf -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x28c9 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x28da -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x28e4 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x28f7 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x28ff -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x290e -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x291d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2936 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x293c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2946 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x294f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x295f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2972 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x297a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2989 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2998 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x29b1 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x29bb -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x29c4 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x29d2 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x29dc -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x29eb -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x29f0 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x29f5 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a0e -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a18 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a30 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a39 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a49 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a58 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a62 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a78 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a89 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a95 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2a9c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2aa1 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2ab2 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2aba -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2ac4 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2adc -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2aeb -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2af0 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b06 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b18 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b1f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b21 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b2f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b39 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b40 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b4a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b56 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b5c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b61 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b79 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b7f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b85 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2b9a -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2ba2 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2ba9 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2bb1 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2bc9 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2bcf -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2bd8 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2bdf -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2bfd -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2c05 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2c51 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2c5c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2c6d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2c7c -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2c87 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2c98 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2ca4 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2cb1 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2cb9 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2cc5 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2cdb -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2ce7 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2cee -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2cf7 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2d07 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2d0f -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2d1b -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2d23 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2d33 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2d4d -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2d59 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2d60 -DEBUG azoth_transform::push_split: PushSplit: skipping block with jump opcode at PC 0x2d80 -DEBUG azoth_transform::push_split: PushSplit: applied splits -DEBUG azoth_transform::obfuscator: Result: changed=true -DEBUG azoth_transform::obfuscator: Post: 851 blocks (+0), 7358 instructions (+261) -DEBUG azoth_transform::obfuscator: Transform 3: SlotShuffle (pre: 851 blocks, 7358 instructions) -DEBUG azoth_transform::slot_shuffle: SlotShuffle: placeholder apply (no-op) -DEBUG azoth_transform::obfuscator: Result: changed=false -DEBUG azoth_transform::obfuscator: Post: 851 blocks (+0), 7358 instructions (+0) -DEBUG azoth_transform::obfuscator: Transform 4: StringObfuscate (pre: 851 blocks, 7358 instructions) -DEBUG azoth_transform::string_obfuscate: StringObfuscate: scanning for Error(string) literals -DEBUG azoth_transform::string_obfuscate: StringObfuscate: structural detection found 1 chunk(s) (length=29) -DEBUG azoth_transform::string_obfuscate: StringObfuscate: heuristic detection found string at idx 18 (PC 0xeba) -DEBUG azoth_transform::string_obfuscate: StringObfuscate: heuristic detection found string at idx 18 (PC 0x0) -DEBUG azoth_transform::string_obfuscate: StringObfuscate: structural detection found 1 chunk(s) (length=30) -DEBUG azoth_transform::string_obfuscate: StringObfuscate: heuristic detection found string at idx 18 (PC 0x0) -DEBUG azoth_transform::string_obfuscate: StringObfuscate: structural detection found 1 chunk(s) (length=32) -DEBUG azoth_transform::string_obfuscate: StringObfuscate: structural detection found 1 chunk(s) (length=29) -DEBUG azoth_transform::string_obfuscate: StringObfuscate: structural detection found 1 chunk(s) (length=29) -DEBUG azoth_transform::string_obfuscate: StringObfuscate: structural detection found 1 chunk(s) (length=26) -DEBUG azoth_transform::string_obfuscate: StringObfuscate: heuristic detection found string at idx 24 (PC 0x12) -DEBUG azoth_transform::string_obfuscate: StringObfuscate: heuristic detection found string at idx 18 (PC 0x0) -DEBUG azoth_transform::string_obfuscate: StringObfuscate: structural detection found 1 chunk(s) (length=30) -DEBUG azoth_transform::string_obfuscate: StringObfuscate: heuristic detection found string at idx 18 (PC 0x26d3) -DEBUG azoth_transform::string_obfuscate: StringObfuscate: structural detection found 1 chunk(s) (length=24) -DEBUG azoth_transform::string_obfuscate: StringObfuscate: structural detection found 1 chunk(s) (length=23) -DEBUG azoth_transform::string_obfuscate: StringObfuscate: heuristic detection found string at idx 18 (PC 0x0) -DEBUG azoth_transform::string_obfuscate: StringObfuscate: obfuscated Error(string) literals -DEBUG azoth_transform::obfuscator: Result: changed=true -DEBUG azoth_transform::obfuscator: Post: 851 blocks (+0), 7358 instructions (+0) -DEBUG azoth_transform::obfuscator: Transform summary: -DEBUG azoth_transform::obfuscator: Any transform changed: true -DEBUG azoth_transform::obfuscator: Final blocks: 851 (+76) -DEBUG azoth_transform::obfuscator: Final instructions: 7358 (+1094) -DEBUG azoth_transform::obfuscator: FunctionDispatcher: changed=true, blocks_delta=+76, instructions_delta=+473 -DEBUG azoth_transform::obfuscator: ArithmeticChain: changed=true, blocks_delta=+0, instructions_delta=+360 -DEBUG azoth_transform::obfuscator: PushSplit: changed=true, blocks_delta=+0, instructions_delta=+261 -DEBUG azoth_transform::obfuscator: SlotShuffle: changed=false, blocks_delta=+0, instructions_delta=+0 -DEBUG azoth_transform::obfuscator: StringObfuscate: changed=true, blocks_delta=+0, instructions_delta=+0 -DEBUG azoth_transform::obfuscator: Reindexing PCs to normalize to 0-based addressing -DEBUG azoth_core::cfg_ir: Reindexed block 2: old start_pc=0x2ef -> new start_pc=0x0 -DEBUG azoth_core::cfg_ir: Reindexed block 3: old start_pc=0x2fd -> new start_pc=0xe -DEBUG azoth_core::cfg_ir: Reindexed block 4: old start_pc=0x300 -> new start_pc=0x11 -DEBUG azoth_core::cfg_ir: Reindexed block 5: old start_pc=0x311 -> new start_pc=0x22 -DEBUG azoth_core::cfg_ir: Reindexed block 6: old start_pc=0x31c -> new start_pc=0x2d -DEBUG azoth_core::cfg_ir: Reindexed block 7: old start_pc=0x327 -> new start_pc=0x38 -DEBUG azoth_core::cfg_ir: Reindexed block 8: old start_pc=0x332 -> new start_pc=0x43 -DEBUG azoth_core::cfg_ir: Reindexed block 9: old start_pc=0x33d -> new start_pc=0x4e -DEBUG azoth_core::cfg_ir: Reindexed block 10: old start_pc=0x348 -> new start_pc=0x59 -DEBUG azoth_core::cfg_ir: Reindexed block 11: old start_pc=0x353 -> new start_pc=0x64 -DEBUG azoth_core::cfg_ir: Reindexed block 12: old start_pc=0x35e -> new start_pc=0x6f -DEBUG azoth_core::cfg_ir: Reindexed block 13: old start_pc=0x369 -> new start_pc=0x7a -DEBUG azoth_core::cfg_ir: Reindexed block 14: old start_pc=0x374 -> new start_pc=0x85 -DEBUG azoth_core::cfg_ir: Reindexed block 15: old start_pc=0x37f -> new start_pc=0x90 -DEBUG azoth_core::cfg_ir: Reindexed block 16: old start_pc=0x38a -> new start_pc=0x9b -DEBUG azoth_core::cfg_ir: Reindexed block 17: old start_pc=0x395 -> new start_pc=0xa6 -DEBUG azoth_core::cfg_ir: Reindexed block 18: old start_pc=0x3a0 -> new start_pc=0xb1 -DEBUG azoth_core::cfg_ir: Reindexed block 19: old start_pc=0x3ab -> new start_pc=0xbc -DEBUG azoth_core::cfg_ir: Reindexed block 20: old start_pc=0x3b6 -> new start_pc=0xc7 -DEBUG azoth_core::cfg_ir: Reindexed block 21: old start_pc=0x3c1 -> new start_pc=0xd2 -DEBUG azoth_core::cfg_ir: Reindexed block 22: old start_pc=0x3cc -> new start_pc=0xdd -DEBUG azoth_core::cfg_ir: Reindexed block 23: old start_pc=0x3d6 -> new start_pc=0xe7 -DEBUG azoth_core::cfg_ir: Reindexed block 24: old start_pc=0x3d9 -> new start_pc=0xea -DEBUG azoth_core::cfg_ir: Reindexed block 25: old start_pc=0x3de -> new start_pc=0xef -DEBUG azoth_core::cfg_ir: Reindexed block 26: old start_pc=0x3e3 -> new start_pc=0xf4 -DEBUG azoth_core::cfg_ir: Reindexed block 27: old start_pc=0x3e8 -> new start_pc=0xf9 -DEBUG azoth_core::cfg_ir: Reindexed block 28: old start_pc=0x3ed -> new start_pc=0xfe -DEBUG azoth_core::cfg_ir: Reindexed block 29: old start_pc=0x3f2 -> new start_pc=0x103 -DEBUG azoth_core::cfg_ir: Reindexed block 30: old start_pc=0x3f7 -> new start_pc=0x108 -DEBUG azoth_core::cfg_ir: Reindexed block 31: old start_pc=0x3fc -> new start_pc=0x10d -DEBUG azoth_core::cfg_ir: Reindexed block 32: old start_pc=0x401 -> new start_pc=0x112 -DEBUG azoth_core::cfg_ir: Reindexed block 33: old start_pc=0x406 -> new start_pc=0x117 -DEBUG azoth_core::cfg_ir: Reindexed block 34: old start_pc=0x40b -> new start_pc=0x11c -DEBUG azoth_core::cfg_ir: Reindexed block 35: old start_pc=0x410 -> new start_pc=0x121 -DEBUG azoth_core::cfg_ir: Reindexed block 36: old start_pc=0x415 -> new start_pc=0x126 -DEBUG azoth_core::cfg_ir: Reindexed block 37: old start_pc=0x41a -> new start_pc=0x12b -DEBUG azoth_core::cfg_ir: Reindexed block 38: old start_pc=0x41f -> new start_pc=0x130 -DEBUG azoth_core::cfg_ir: Reindexed block 39: old start_pc=0x424 -> new start_pc=0x135 -DEBUG azoth_core::cfg_ir: Reindexed block 40: old start_pc=0x429 -> new start_pc=0x13a -DEBUG azoth_core::cfg_ir: Reindexed block 41: old start_pc=0x42e -> new start_pc=0x13f -DEBUG azoth_core::cfg_ir: Reindexed block 42: old start_pc=0x433 -> new start_pc=0x144 -DEBUG azoth_core::cfg_ir: Reindexed block 43: old start_pc=0x439 -> new start_pc=0x14a -DEBUG azoth_core::cfg_ir: Reindexed block 44: old start_pc=0x444 -> new start_pc=0x155 -DEBUG azoth_core::cfg_ir: Reindexed block 45: old start_pc=0x477 -> new start_pc=0x188 -DEBUG azoth_core::cfg_ir: Reindexed block 46: old start_pc=0x483 -> new start_pc=0x194 -DEBUG azoth_core::cfg_ir: Reindexed block 47: old start_pc=0x487 -> new start_pc=0x198 -DEBUG azoth_core::cfg_ir: Reindexed block 48: old start_pc=0x48d -> new start_pc=0x19e -DEBUG azoth_core::cfg_ir: Reindexed block 49: old start_pc=0x498 -> new start_pc=0x1a9 -DEBUG azoth_core::cfg_ir: Reindexed block 50: old start_pc=0x4af -> new start_pc=0x1c0 -DEBUG azoth_core::cfg_ir: Reindexed block 51: old start_pc=0x4b5 -> new start_pc=0x1c6 -DEBUG azoth_core::cfg_ir: Reindexed block 52: old start_pc=0x4c0 -> new start_pc=0x1d1 -DEBUG azoth_core::cfg_ir: Reindexed block 53: old start_pc=0x4e9 -> new start_pc=0x1fa -DEBUG azoth_core::cfg_ir: Reindexed block 54: old start_pc=0x4ef -> new start_pc=0x200 -DEBUG azoth_core::cfg_ir: Reindexed block 55: old start_pc=0x4fa -> new start_pc=0x20b -DEBUG azoth_core::cfg_ir: Reindexed block 56: old start_pc=0x50b -> new start_pc=0x21c -DEBUG azoth_core::cfg_ir: Reindexed block 57: old start_pc=0x511 -> new start_pc=0x222 -DEBUG azoth_core::cfg_ir: Reindexed block 58: old start_pc=0x51c -> new start_pc=0x22d -DEBUG azoth_core::cfg_ir: Reindexed block 59: old start_pc=0x528 -> new start_pc=0x239 -DEBUG azoth_core::cfg_ir: Reindexed block 60: old start_pc=0x52e -> new start_pc=0x23f -DEBUG azoth_core::cfg_ir: Reindexed block 61: old start_pc=0x539 -> new start_pc=0x24a -DEBUG azoth_core::cfg_ir: Reindexed block 62: old start_pc=0x54d -> new start_pc=0x25e -DEBUG azoth_core::cfg_ir: Reindexed block 63: old start_pc=0x556 -> new start_pc=0x267 -DEBUG azoth_core::cfg_ir: Reindexed block 64: old start_pc=0x588 -> new start_pc=0x299 -DEBUG azoth_core::cfg_ir: Reindexed block 65: old start_pc=0x590 -> new start_pc=0x2a1 -DEBUG azoth_core::cfg_ir: Reindexed block 66: old start_pc=0x598 -> new start_pc=0x2a9 -DEBUG azoth_core::cfg_ir: Reindexed block 67: old start_pc=0x5ac -> new start_pc=0x2bd -DEBUG azoth_core::cfg_ir: Reindexed block 68: old start_pc=0x5bc -> new start_pc=0x2cd -DEBUG azoth_core::cfg_ir: Reindexed block 69: old start_pc=0x5c5 -> new start_pc=0x2d6 -DEBUG azoth_core::cfg_ir: Reindexed block 70: old start_pc=0x5d3 -> new start_pc=0x2e4 -DEBUG azoth_core::cfg_ir: Reindexed block 71: old start_pc=0x5fa -> new start_pc=0x30b -DEBUG azoth_core::cfg_ir: Reindexed block 72: old start_pc=0x630 -> new start_pc=0x341 -DEBUG azoth_core::cfg_ir: Reindexed block 73: old start_pc=0x634 -> new start_pc=0x345 -DEBUG azoth_core::cfg_ir: Reindexed block 74: old start_pc=0x635 -> new start_pc=0x346 -DEBUG azoth_core::cfg_ir: Reindexed block 75: old start_pc=0x644 -> new start_pc=0x355 -DEBUG azoth_core::cfg_ir: Reindexed block 76: old start_pc=0x64e -> new start_pc=0x35f -DEBUG azoth_core::cfg_ir: Reindexed block 77: old start_pc=0x656 -> new start_pc=0x367 -DEBUG azoth_core::cfg_ir: Reindexed block 78: old start_pc=0x658 -> new start_pc=0x369 -DEBUG azoth_core::cfg_ir: Reindexed block 79: old start_pc=0x65f -> new start_pc=0x370 -DEBUG azoth_core::cfg_ir: Reindexed block 80: old start_pc=0x664 -> new start_pc=0x375 -DEBUG azoth_core::cfg_ir: Reindexed block 81: old start_pc=0x66a -> new start_pc=0x37b -DEBUG azoth_core::cfg_ir: Reindexed block 82: old start_pc=0x675 -> new start_pc=0x386 -DEBUG azoth_core::cfg_ir: Reindexed block 83: old start_pc=0x680 -> new start_pc=0x391 -DEBUG azoth_core::cfg_ir: Reindexed block 84: old start_pc=0x686 -> new start_pc=0x397 -DEBUG azoth_core::cfg_ir: Reindexed block 85: old start_pc=0x691 -> new start_pc=0x3a2 -DEBUG azoth_core::cfg_ir: Reindexed block 86: old start_pc=0x69d -> new start_pc=0x3ae -DEBUG azoth_core::cfg_ir: Reindexed block 87: old start_pc=0x6a3 -> new start_pc=0x3b4 -DEBUG azoth_core::cfg_ir: Reindexed block 88: old start_pc=0x6ae -> new start_pc=0x3bf -DEBUG azoth_core::cfg_ir: Reindexed block 89: old start_pc=0x6e1 -> new start_pc=0x3f2 -DEBUG azoth_core::cfg_ir: Reindexed block 90: old start_pc=0x6f0 -> new start_pc=0x401 -DEBUG azoth_core::cfg_ir: Reindexed block 91: old start_pc=0x6f6 -> new start_pc=0x407 -DEBUG azoth_core::cfg_ir: Reindexed block 92: old start_pc=0x701 -> new start_pc=0x412 -DEBUG azoth_core::cfg_ir: Reindexed block 93: old start_pc=0x734 -> new start_pc=0x445 -DEBUG azoth_core::cfg_ir: Reindexed block 94: old start_pc=0x73a -> new start_pc=0x44b -DEBUG azoth_core::cfg_ir: Reindexed block 95: old start_pc=0x745 -> new start_pc=0x456 -DEBUG azoth_core::cfg_ir: Reindexed block 96: old start_pc=0x751 -> new start_pc=0x462 -DEBUG azoth_core::cfg_ir: Reindexed block 97: old start_pc=0x757 -> new start_pc=0x468 -DEBUG azoth_core::cfg_ir: Reindexed block 98: old start_pc=0x763 -> new start_pc=0x474 -DEBUG azoth_core::cfg_ir: Reindexed block 99: old start_pc=0x782 -> new start_pc=0x493 -DEBUG azoth_core::cfg_ir: Reindexed block 100: old start_pc=0x787 -> new start_pc=0x498 -DEBUG azoth_core::cfg_ir: Reindexed block 101: old start_pc=0x78d -> new start_pc=0x49e -DEBUG azoth_core::cfg_ir: Reindexed block 102: old start_pc=0x791 -> new start_pc=0x4a2 -DEBUG azoth_core::cfg_ir: Reindexed block 103: old start_pc=0x796 -> new start_pc=0x4a7 -DEBUG azoth_core::cfg_ir: Reindexed block 104: old start_pc=0x7a5 -> new start_pc=0x4b6 -DEBUG azoth_core::cfg_ir: Reindexed block 105: old start_pc=0x7ad -> new start_pc=0x4be -DEBUG azoth_core::cfg_ir: Reindexed block 106: old start_pc=0x7ba -> new start_pc=0x4cb -DEBUG azoth_core::cfg_ir: Reindexed block 107: old start_pc=0x7c0 -> new start_pc=0x4d1 -DEBUG azoth_core::cfg_ir: Reindexed block 108: old start_pc=0x7cf -> new start_pc=0x4e0 -DEBUG azoth_core::cfg_ir: Reindexed block 109: old start_pc=0x7d4 -> new start_pc=0x4e5 -DEBUG azoth_core::cfg_ir: Reindexed block 110: old start_pc=0x830 -> new start_pc=0x541 -DEBUG azoth_core::cfg_ir: Reindexed block 111: old start_pc=0x838 -> new start_pc=0x549 -DEBUG azoth_core::cfg_ir: Reindexed block 112: old start_pc=0x857 -> new start_pc=0x568 -DEBUG azoth_core::cfg_ir: Reindexed block 113: old start_pc=0x85c -> new start_pc=0x56d -DEBUG azoth_core::cfg_ir: Reindexed block 114: old start_pc=0x861 -> new start_pc=0x572 -DEBUG azoth_core::cfg_ir: Reindexed block 115: old start_pc=0x870 -> new start_pc=0x581 -DEBUG azoth_core::cfg_ir: Reindexed block 116: old start_pc=0x879 -> new start_pc=0x58a -DEBUG azoth_core::cfg_ir: Reindexed block 117: old start_pc=0x87e -> new start_pc=0x58f -DEBUG azoth_core::cfg_ir: Reindexed block 118: old start_pc=0x88a -> new start_pc=0x59b -DEBUG azoth_core::cfg_ir: Reindexed block 119: old start_pc=0x89d -> new start_pc=0x5ae -DEBUG azoth_core::cfg_ir: Reindexed block 120: old start_pc=0x8a2 -> new start_pc=0x5b3 -DEBUG azoth_core::cfg_ir: Reindexed block 121: old start_pc=0x8aa -> new start_pc=0x5bb -DEBUG azoth_core::cfg_ir: Reindexed block 122: old start_pc=0x8b0 -> new start_pc=0x5c1 -DEBUG azoth_core::cfg_ir: Reindexed block 123: old start_pc=0x8ba -> new start_pc=0x5cb -DEBUG azoth_core::cfg_ir: Reindexed block 124: old start_pc=0x8c0 -> new start_pc=0x5d1 -DEBUG azoth_core::cfg_ir: Reindexed block 125: old start_pc=0x8cc -> new start_pc=0x5dd -DEBUG azoth_core::cfg_ir: Reindexed block 126: old start_pc=0x90b -> new start_pc=0x61c -DEBUG azoth_core::cfg_ir: Reindexed block 127: old start_pc=0x921 -> new start_pc=0x632 -DEBUG azoth_core::cfg_ir: Reindexed block 128: old start_pc=0x926 -> new start_pc=0x637 -DEBUG azoth_core::cfg_ir: Reindexed block 129: old start_pc=0x931 -> new start_pc=0x642 -DEBUG azoth_core::cfg_ir: Reindexed block 130: old start_pc=0x93c -> new start_pc=0x64d -DEBUG azoth_core::cfg_ir: Reindexed block 131: old start_pc=0x944 -> new start_pc=0x655 -DEBUG azoth_core::cfg_ir: Reindexed block 132: old start_pc=0x949 -> new start_pc=0x65a -DEBUG azoth_core::cfg_ir: Reindexed block 133: old start_pc=0x95d -> new start_pc=0x66e -DEBUG azoth_core::cfg_ir: Reindexed block 134: old start_pc=0x98a -> new start_pc=0x69b -DEBUG azoth_core::cfg_ir: Reindexed block 135: old start_pc=0x9c0 -> new start_pc=0x6d1 -DEBUG azoth_core::cfg_ir: Reindexed block 136: old start_pc=0x9c4 -> new start_pc=0x6d5 -DEBUG azoth_core::cfg_ir: Reindexed block 137: old start_pc=0x9d8 -> new start_pc=0x6e9 -DEBUG azoth_core::cfg_ir: Reindexed block 138: old start_pc=0x9e7 -> new start_pc=0x6f8 -DEBUG azoth_core::cfg_ir: Reindexed block 139: old start_pc=0x9f0 -> new start_pc=0x701 -DEBUG azoth_core::cfg_ir: Reindexed block 140: old start_pc=0x9f5 -> new start_pc=0x706 -DEBUG azoth_core::cfg_ir: Reindexed block 141: old start_pc=0x9fb -> new start_pc=0x70c -DEBUG azoth_core::cfg_ir: Reindexed block 142: old start_pc=0xa06 -> new start_pc=0x717 -DEBUG azoth_core::cfg_ir: Reindexed block 143: old start_pc=0xa0f -> new start_pc=0x720 -DEBUG azoth_core::cfg_ir: Reindexed block 144: old start_pc=0xa19 -> new start_pc=0x72a -DEBUG azoth_core::cfg_ir: Reindexed block 145: old start_pc=0xa1f -> new start_pc=0x730 -DEBUG azoth_core::cfg_ir: Reindexed block 146: old start_pc=0xa2a -> new start_pc=0x73b -DEBUG azoth_core::cfg_ir: Reindexed block 147: old start_pc=0xa36 -> new start_pc=0x747 -DEBUG azoth_core::cfg_ir: Reindexed block 148: old start_pc=0xa3c -> new start_pc=0x74d -DEBUG azoth_core::cfg_ir: Reindexed block 149: old start_pc=0xa47 -> new start_pc=0x758 -DEBUG azoth_core::cfg_ir: Reindexed block 150: old start_pc=0xa70 -> new start_pc=0x781 -DEBUG azoth_core::cfg_ir: Reindexed block 151: old start_pc=0xa76 -> new start_pc=0x787 -DEBUG azoth_core::cfg_ir: Reindexed block 152: old start_pc=0xa82 -> new start_pc=0x793 -DEBUG azoth_core::cfg_ir: Reindexed block 153: old start_pc=0xa94 -> new start_pc=0x7a5 -DEBUG azoth_core::cfg_ir: Reindexed block 154: old start_pc=0xaa7 -> new start_pc=0x7b8 -DEBUG azoth_core::cfg_ir: Reindexed block 155: old start_pc=0xacf -> new start_pc=0x7e0 -DEBUG azoth_core::cfg_ir: Reindexed block 156: old start_pc=0xae9 -> new start_pc=0x7fa -DEBUG azoth_core::cfg_ir: Reindexed block 157: old start_pc=0xaf2 -> new start_pc=0x803 -DEBUG azoth_core::cfg_ir: Reindexed block 158: old start_pc=0xafe -> new start_pc=0x80f -DEBUG azoth_core::cfg_ir: Reindexed block 159: old start_pc=0xb0b -> new start_pc=0x81c -DEBUG azoth_core::cfg_ir: Reindexed block 160: old start_pc=0xb33 -> new start_pc=0x844 -DEBUG azoth_core::cfg_ir: Reindexed block 161: old start_pc=0xb43 -> new start_pc=0x854 -DEBUG azoth_core::cfg_ir: Reindexed block 162: old start_pc=0xb50 -> new start_pc=0x861 -DEBUG azoth_core::cfg_ir: Reindexed block 163: old start_pc=0xb57 -> new start_pc=0x868 -DEBUG azoth_core::cfg_ir: Reindexed block 164: old start_pc=0xb63 -> new start_pc=0x874 -DEBUG azoth_core::cfg_ir: Reindexed block 165: old start_pc=0xb70 -> new start_pc=0x881 -DEBUG azoth_core::cfg_ir: Reindexed block 166: old start_pc=0xb76 -> new start_pc=0x887 -DEBUG azoth_core::cfg_ir: Reindexed block 167: old start_pc=0xb7c -> new start_pc=0x88d -DEBUG azoth_core::cfg_ir: Reindexed block 168: old start_pc=0xb89 -> new start_pc=0x89a -DEBUG azoth_core::cfg_ir: Reindexed block 169: old start_pc=0xb8f -> new start_pc=0x8a0 -DEBUG azoth_core::cfg_ir: Reindexed block 170: old start_pc=0xba5 -> new start_pc=0x8b6 -DEBUG azoth_core::cfg_ir: Reindexed block 171: old start_pc=0xbb9 -> new start_pc=0x8ca -DEBUG azoth_core::cfg_ir: Reindexed block 172: old start_pc=0xbc3 -> new start_pc=0x8d4 -DEBUG azoth_core::cfg_ir: Reindexed block 173: old start_pc=0xbcb -> new start_pc=0x8dc -DEBUG azoth_core::cfg_ir: Reindexed block 174: old start_pc=0xbd0 -> new start_pc=0x8e1 -DEBUG azoth_core::cfg_ir: Reindexed block 175: old start_pc=0xbd5 -> new start_pc=0x8e6 -DEBUG azoth_core::cfg_ir: Reindexed block 176: old start_pc=0xc47 -> new start_pc=0x958 -DEBUG azoth_core::cfg_ir: Reindexed block 177: old start_pc=0xc4c -> new start_pc=0x95d -DEBUG azoth_core::cfg_ir: Reindexed block 178: old start_pc=0xc5d -> new start_pc=0x96e -DEBUG azoth_core::cfg_ir: Reindexed block 179: old start_pc=0xc66 -> new start_pc=0x977 -DEBUG azoth_core::cfg_ir: Reindexed block 180: old start_pc=0xc80 -> new start_pc=0x991 -DEBUG azoth_core::cfg_ir: Reindexed block 181: old start_pc=0xc89 -> new start_pc=0x99a -DEBUG azoth_core::cfg_ir: Reindexed block 182: old start_pc=0xc99 -> new start_pc=0x9aa -DEBUG azoth_core::cfg_ir: Reindexed block 183: old start_pc=0xca2 -> new start_pc=0x9b3 -DEBUG azoth_core::cfg_ir: Reindexed block 184: old start_pc=0xcd9 -> new start_pc=0x9ea -DEBUG azoth_core::cfg_ir: Reindexed block 185: old start_pc=0xced -> new start_pc=0x9fe -DEBUG azoth_core::cfg_ir: Reindexed block 186: old start_pc=0xcf1 -> new start_pc=0xa02 -DEBUG azoth_core::cfg_ir: Reindexed block 187: old start_pc=0xcf2 -> new start_pc=0xa03 -DEBUG azoth_core::cfg_ir: Reindexed block 188: old start_pc=0xcfe -> new start_pc=0xa0f -DEBUG azoth_core::cfg_ir: Reindexed block 189: old start_pc=0xd05 -> new start_pc=0xa16 -DEBUG azoth_core::cfg_ir: Reindexed block 190: old start_pc=0xd0b -> new start_pc=0xa1c -DEBUG azoth_core::cfg_ir: Reindexed block 191: old start_pc=0xd16 -> new start_pc=0xa27 -DEBUG azoth_core::cfg_ir: Reindexed block 192: old start_pc=0xd2a -> new start_pc=0xa3b -DEBUG azoth_core::cfg_ir: Reindexed block 193: old start_pc=0xd30 -> new start_pc=0xa41 -DEBUG azoth_core::cfg_ir: Reindexed block 194: old start_pc=0xd3b -> new start_pc=0xa4c -DEBUG azoth_core::cfg_ir: Reindexed block 195: old start_pc=0xd47 -> new start_pc=0xa58 -DEBUG azoth_core::cfg_ir: Reindexed block 196: old start_pc=0xd4d -> new start_pc=0xa5e -DEBUG azoth_core::cfg_ir: Reindexed block 197: old start_pc=0xd4e -> new start_pc=0xa5f -DEBUG azoth_core::cfg_ir: Reindexed block 198: old start_pc=0xd93 -> new start_pc=0xaa4 -DEBUG azoth_core::cfg_ir: Reindexed block 199: old start_pc=0xd99 -> new start_pc=0xaaa -DEBUG azoth_core::cfg_ir: Reindexed block 200: old start_pc=0xd9a -> new start_pc=0xaab -DEBUG azoth_core::cfg_ir: Reindexed block 201: old start_pc=0xdd5 -> new start_pc=0xb1f -DEBUG azoth_core::cfg_ir: Reindexed block 202: old start_pc=0xddb -> new start_pc=0xb25 -DEBUG azoth_core::cfg_ir: Reindexed block 203: old start_pc=0xddc -> new start_pc=0xb26 -DEBUG azoth_core::cfg_ir: Reindexed block 204: old start_pc=0xe47 -> new start_pc=0xcaa -DEBUG azoth_core::cfg_ir: Reindexed block 205: old start_pc=0xe5b -> new start_pc=0xccb -DEBUG azoth_core::cfg_ir: Reindexed block 206: old start_pc=0xe69 -> new start_pc=0xcd9 -DEBUG azoth_core::cfg_ir: Reindexed block 207: old start_pc=0xe6a -> new start_pc=0xcda -DEBUG azoth_core::cfg_ir: Reindexed block 208: old start_pc=0xe6f -> new start_pc=0xcdf -DEBUG azoth_core::cfg_ir: Reindexed block 209: old start_pc=0xe7c -> new start_pc=0xcec -DEBUG azoth_core::cfg_ir: Reindexed block 210: old start_pc=0xe7d -> new start_pc=0xced -DEBUG azoth_core::cfg_ir: Reindexed block 211: old start_pc=0xe8a -> new start_pc=0xcfa -DEBUG azoth_core::cfg_ir: Reindexed block 212: old start_pc=0xe8b -> new start_pc=0xcfb -DEBUG azoth_core::cfg_ir: Reindexed block 213: old start_pc=0xe97 -> new start_pc=0xd07 -DEBUG azoth_core::cfg_ir: Reindexed block 214: old start_pc=0xe98 -> new start_pc=0xd08 -DEBUG azoth_core::cfg_ir: Reindexed block 215: old start_pc=0xe9e -> new start_pc=0xd0e -DEBUG azoth_core::cfg_ir: Reindexed block 216: old start_pc=0xe9f -> new start_pc=0xd0f -DEBUG azoth_core::cfg_ir: Reindexed block 217: old start_pc=0xedc -> new start_pc=0xd4c -DEBUG azoth_core::cfg_ir: Reindexed block 218: old start_pc=0xef0 -> new start_pc=0xd67 -DEBUG azoth_core::cfg_ir: Reindexed block 219: old start_pc=0xf0e -> new start_pc=0xd85 -DEBUG azoth_core::cfg_ir: Reindexed block 220: old start_pc=0xf12 -> new start_pc=0xd89 -DEBUG azoth_core::cfg_ir: Reindexed block 221: old start_pc=0xf17 -> new start_pc=0xd8e -DEBUG azoth_core::cfg_ir: Reindexed block 222: old start_pc=0xf23 -> new start_pc=0xd9a -DEBUG azoth_core::cfg_ir: Reindexed block 223: old start_pc=0xf2d -> new start_pc=0xda4 -DEBUG azoth_core::cfg_ir: Reindexed block 224: old start_pc=0xf2f -> new start_pc=0xda6 -DEBUG azoth_core::cfg_ir: Reindexed block 225: old start_pc=0xf3a -> new start_pc=0xdb1 -DEBUG azoth_core::cfg_ir: Reindexed block 226: old start_pc=0xf40 -> new start_pc=0xdb7 -DEBUG azoth_core::cfg_ir: Reindexed block 227: old start_pc=0xf41 -> new start_pc=0xdb8 -DEBUG azoth_core::cfg_ir: Reindexed block 228: old start_pc=0xf7f -> new start_pc=0xdf6 -DEBUG azoth_core::cfg_ir: Reindexed block 229: old start_pc=0xf85 -> new start_pc=0xdfc -DEBUG azoth_core::cfg_ir: Reindexed block 230: old start_pc=0xf86 -> new start_pc=0xdfd -DEBUG azoth_core::cfg_ir: Reindexed block 231: old start_pc=0xfdf -> new start_pc=0xe9f -DEBUG azoth_core::cfg_ir: Reindexed block 232: old start_pc=0xfe5 -> new start_pc=0xea5 -DEBUG azoth_core::cfg_ir: Reindexed block 233: old start_pc=0xfe6 -> new start_pc=0xea6 -DEBUG azoth_core::cfg_ir: Reindexed block 234: old start_pc=0x1036 -> new start_pc=0xfe7 -DEBUG azoth_core::cfg_ir: Reindexed block 235: old start_pc=0x103c -> new start_pc=0xfed -DEBUG azoth_core::cfg_ir: Reindexed block 236: old start_pc=0x103d -> new start_pc=0xfee -DEBUG azoth_core::cfg_ir: Reindexed block 237: old start_pc=0x1082 -> new start_pc=0x1077 -DEBUG azoth_core::cfg_ir: Reindexed block 238: old start_pc=0x1088 -> new start_pc=0x107d -DEBUG azoth_core::cfg_ir: Reindexed block 239: old start_pc=0x1089 -> new start_pc=0x107e -DEBUG azoth_core::cfg_ir: Reindexed block 240: old start_pc=0x10ce -> new start_pc=0x10c3 -DEBUG azoth_core::cfg_ir: Reindexed block 241: old start_pc=0x10d4 -> new start_pc=0x10c9 -DEBUG azoth_core::cfg_ir: Reindexed block 242: old start_pc=0x10d5 -> new start_pc=0x10ca -DEBUG azoth_core::cfg_ir: Reindexed block 243: old start_pc=0x111a -> new start_pc=0x1172 -DEBUG azoth_core::cfg_ir: Reindexed block 244: old start_pc=0x1127 -> new start_pc=0x117f -DEBUG azoth_core::cfg_ir: Reindexed block 245: old start_pc=0x112a -> new start_pc=0x1182 -DEBUG azoth_core::cfg_ir: Reindexed block 246: old start_pc=0x1132 -> new start_pc=0x118a -DEBUG azoth_core::cfg_ir: Reindexed block 247: old start_pc=0x1138 -> new start_pc=0x1190 -DEBUG azoth_core::cfg_ir: Reindexed block 248: old start_pc=0x1139 -> new start_pc=0x1191 -DEBUG azoth_core::cfg_ir: Reindexed block 249: old start_pc=0x117d -> new start_pc=0x11d5 -DEBUG azoth_core::cfg_ir: Reindexed block 250: old start_pc=0x1183 -> new start_pc=0x11db -DEBUG azoth_core::cfg_ir: Reindexed block 251: old start_pc=0x1184 -> new start_pc=0x11dc -DEBUG azoth_core::cfg_ir: Reindexed block 252: old start_pc=0x11c9 -> new start_pc=0x1221 -DEBUG azoth_core::cfg_ir: Reindexed block 253: old start_pc=0x11d7 -> new start_pc=0x122f -DEBUG azoth_core::cfg_ir: Reindexed block 254: old start_pc=0x11d8 -> new start_pc=0x1230 -DEBUG azoth_core::cfg_ir: Reindexed block 255: old start_pc=0x11e5 -> new start_pc=0x123d -DEBUG azoth_core::cfg_ir: Reindexed block 256: old start_pc=0x11e6 -> new start_pc=0x123e -DEBUG azoth_core::cfg_ir: Reindexed block 257: old start_pc=0x11f2 -> new start_pc=0x124a -DEBUG azoth_core::cfg_ir: Reindexed block 258: old start_pc=0x11f3 -> new start_pc=0x124b -DEBUG azoth_core::cfg_ir: Reindexed block 259: old start_pc=0x11f9 -> new start_pc=0x1251 -DEBUG azoth_core::cfg_ir: Reindexed block 260: old start_pc=0x11fa -> new start_pc=0x1252 -DEBUG azoth_core::cfg_ir: Reindexed block 261: old start_pc=0x1236 -> new start_pc=0x1310 -DEBUG azoth_core::cfg_ir: Reindexed block 262: old start_pc=0x123c -> new start_pc=0x1316 -DEBUG azoth_core::cfg_ir: Reindexed block 263: old start_pc=0x123d -> new start_pc=0x1317 -DEBUG azoth_core::cfg_ir: Reindexed block 264: old start_pc=0x1282 -> new start_pc=0x135c -DEBUG azoth_core::cfg_ir: Reindexed block 265: old start_pc=0x1294 -> new start_pc=0x136e -DEBUG azoth_core::cfg_ir: Reindexed block 266: old start_pc=0x12a7 -> new start_pc=0x1381 -DEBUG azoth_core::cfg_ir: Reindexed block 267: old start_pc=0x12b4 -> new start_pc=0x138e -DEBUG azoth_core::cfg_ir: Reindexed block 268: old start_pc=0x12b5 -> new start_pc=0x138f -DEBUG azoth_core::cfg_ir: Reindexed block 269: old start_pc=0x12c5 -> new start_pc=0x139f -DEBUG azoth_core::cfg_ir: Reindexed block 270: old start_pc=0x12d1 -> new start_pc=0x13ab -DEBUG azoth_core::cfg_ir: Reindexed block 271: old start_pc=0x12dd -> new start_pc=0x13b7 -DEBUG azoth_core::cfg_ir: Reindexed block 272: old start_pc=0x12eb -> new start_pc=0x13c5 -DEBUG azoth_core::cfg_ir: Reindexed block 273: old start_pc=0x12f9 -> new start_pc=0x13d3 -DEBUG azoth_core::cfg_ir: Reindexed block 274: old start_pc=0x1307 -> new start_pc=0x13e1 -DEBUG azoth_core::cfg_ir: Reindexed block 275: old start_pc=0x130d -> new start_pc=0x13e7 -DEBUG azoth_core::cfg_ir: Reindexed block 276: old start_pc=0x130e -> new start_pc=0x13e8 -DEBUG azoth_core::cfg_ir: Reindexed block 277: old start_pc=0x1353 -> new start_pc=0x142d -DEBUG azoth_core::cfg_ir: Reindexed block 278: old start_pc=0x1359 -> new start_pc=0x1433 -DEBUG azoth_core::cfg_ir: Reindexed block 279: old start_pc=0x135a -> new start_pc=0x1434 -DEBUG azoth_core::cfg_ir: Reindexed block 280: old start_pc=0x139f -> new start_pc=0x1513 -DEBUG azoth_core::cfg_ir: Reindexed block 281: old start_pc=0x13a5 -> new start_pc=0x1519 -DEBUG azoth_core::cfg_ir: Reindexed block 282: old start_pc=0x13a6 -> new start_pc=0x151a -DEBUG azoth_core::cfg_ir: Reindexed block 283: old start_pc=0x13eb -> new start_pc=0x1631 -DEBUG azoth_core::cfg_ir: Reindexed block 284: old start_pc=0x13f1 -> new start_pc=0x1637 -DEBUG azoth_core::cfg_ir: Reindexed block 285: old start_pc=0x13f2 -> new start_pc=0x1638 -DEBUG azoth_core::cfg_ir: Reindexed block 286: old start_pc=0x1430 -> new start_pc=0x1739 -DEBUG azoth_core::cfg_ir: Reindexed block 287: old start_pc=0x1438 -> new start_pc=0x1741 -DEBUG azoth_core::cfg_ir: Reindexed block 288: old start_pc=0x143d -> new start_pc=0x1746 -DEBUG azoth_core::cfg_ir: Reindexed block 289: old start_pc=0x145d -> new start_pc=0x1766 -DEBUG azoth_core::cfg_ir: Reindexed block 290: old start_pc=0x14ac -> new start_pc=0x186b -DEBUG azoth_core::cfg_ir: Reindexed block 291: old start_pc=0x14c0 -> new start_pc=0x1892 -DEBUG azoth_core::cfg_ir: Reindexed block 292: old start_pc=0x14c7 -> new start_pc=0x1899 -DEBUG azoth_core::cfg_ir: Reindexed block 293: old start_pc=0x14c9 -> new start_pc=0x189b -DEBUG azoth_core::cfg_ir: Reindexed block 294: old start_pc=0x14ce -> new start_pc=0x18a0 -DEBUG azoth_core::cfg_ir: Reindexed block 295: old start_pc=0x14d7 -> new start_pc=0x18a9 -DEBUG azoth_core::cfg_ir: Reindexed block 296: old start_pc=0x14da -> new start_pc=0x18ac -DEBUG azoth_core::cfg_ir: Reindexed block 297: old start_pc=0x14e0 -> new start_pc=0x18b2 -DEBUG azoth_core::cfg_ir: Reindexed block 298: old start_pc=0x14e1 -> new start_pc=0x18b3 -DEBUG azoth_core::cfg_ir: Reindexed block 299: old start_pc=0x1519 -> new start_pc=0x199e -DEBUG azoth_core::cfg_ir: Reindexed block 300: old start_pc=0x152b -> new start_pc=0x19b0 -DEBUG azoth_core::cfg_ir: Reindexed block 301: old start_pc=0x152c -> new start_pc=0x19b1 -DEBUG azoth_core::cfg_ir: Reindexed block 302: old start_pc=0x153e -> new start_pc=0x19c3 -DEBUG azoth_core::cfg_ir: Reindexed block 303: old start_pc=0x153f -> new start_pc=0x19c4 -DEBUG azoth_core::cfg_ir: Reindexed block 304: old start_pc=0x1551 -> new start_pc=0x19d6 -DEBUG azoth_core::cfg_ir: Reindexed block 305: old start_pc=0x1552 -> new start_pc=0x19d7 -DEBUG azoth_core::cfg_ir: Reindexed block 306: old start_pc=0x1564 -> new start_pc=0x19e9 -DEBUG azoth_core::cfg_ir: Reindexed block 307: old start_pc=0x1565 -> new start_pc=0x19ea -DEBUG azoth_core::cfg_ir: Reindexed block 308: old start_pc=0x1575 -> new start_pc=0x19fa -DEBUG azoth_core::cfg_ir: Reindexed block 309: old start_pc=0x1576 -> new start_pc=0x19fb -DEBUG azoth_core::cfg_ir: Reindexed block 310: old start_pc=0x157e -> new start_pc=0x1a03 -DEBUG azoth_core::cfg_ir: Reindexed block 311: old start_pc=0x1583 -> new start_pc=0x1a08 -DEBUG azoth_core::cfg_ir: Reindexed block 312: old start_pc=0x158e -> new start_pc=0x1a13 -DEBUG azoth_core::cfg_ir: Reindexed block 313: old start_pc=0x1594 -> new start_pc=0x1a19 -DEBUG azoth_core::cfg_ir: Reindexed block 314: old start_pc=0x15b5 -> new start_pc=0x1a3a -DEBUG azoth_core::cfg_ir: Reindexed block 315: old start_pc=0x15c3 -> new start_pc=0x1a48 -DEBUG azoth_core::cfg_ir: Reindexed block 316: old start_pc=0x15cb -> new start_pc=0x1a50 -DEBUG azoth_core::cfg_ir: Reindexed block 317: old start_pc=0x15e6 -> new start_pc=0x1a6b -DEBUG azoth_core::cfg_ir: Reindexed block 318: old start_pc=0x15ed -> new start_pc=0x1a72 -DEBUG azoth_core::cfg_ir: Reindexed block 319: old start_pc=0x160a -> new start_pc=0x1a8f -DEBUG azoth_core::cfg_ir: Reindexed block 320: old start_pc=0x1610 -> new start_pc=0x1a95 -DEBUG azoth_core::cfg_ir: Reindexed block 321: old start_pc=0x1615 -> new start_pc=0x1a9a -DEBUG azoth_core::cfg_ir: Reindexed block 322: old start_pc=0x161a -> new start_pc=0x1a9f -DEBUG azoth_core::cfg_ir: Reindexed block 323: old start_pc=0x1620 -> new start_pc=0x1aa5 -DEBUG azoth_core::cfg_ir: Reindexed block 324: old start_pc=0x1622 -> new start_pc=0x1aa7 -DEBUG azoth_core::cfg_ir: Reindexed block 325: old start_pc=0x1624 -> new start_pc=0x1aa9 -DEBUG azoth_core::cfg_ir: Reindexed block 326: old start_pc=0x162d -> new start_pc=0x1ab2 -DEBUG azoth_core::cfg_ir: Reindexed block 327: old start_pc=0x1637 -> new start_pc=0x1abc -DEBUG azoth_core::cfg_ir: Reindexed block 328: old start_pc=0x163d -> new start_pc=0x1ac2 -DEBUG azoth_core::cfg_ir: Reindexed block 329: old start_pc=0x1647 -> new start_pc=0x1acc -DEBUG azoth_core::cfg_ir: Reindexed block 330: old start_pc=0x165f -> new start_pc=0x1ae4 -DEBUG azoth_core::cfg_ir: Reindexed block 331: old start_pc=0x166d -> new start_pc=0x1af2 -DEBUG azoth_core::cfg_ir: Reindexed block 332: old start_pc=0x1676 -> new start_pc=0x1afb -DEBUG azoth_core::cfg_ir: Reindexed block 333: old start_pc=0x167b -> new start_pc=0x1b00 -DEBUG azoth_core::cfg_ir: Reindexed block 334: old start_pc=0x1689 -> new start_pc=0x1b0e -DEBUG azoth_core::cfg_ir: Reindexed block 335: old start_pc=0x1690 -> new start_pc=0x1b15 -DEBUG azoth_core::cfg_ir: Reindexed block 336: old start_pc=0x1699 -> new start_pc=0x1b1e -DEBUG azoth_core::cfg_ir: Reindexed block 337: old start_pc=0x169f -> new start_pc=0x1b24 -DEBUG azoth_core::cfg_ir: Reindexed block 338: old start_pc=0x16a0 -> new start_pc=0x1b25 -DEBUG azoth_core::cfg_ir: Reindexed block 339: old start_pc=0x16ef -> new start_pc=0x1c2d -DEBUG azoth_core::cfg_ir: Reindexed block 340: old start_pc=0x1711 -> new start_pc=0x1c4f -DEBUG azoth_core::cfg_ir: Reindexed block 341: old start_pc=0x172c -> new start_pc=0x1c6a -DEBUG azoth_core::cfg_ir: Reindexed block 342: old start_pc=0x1733 -> new start_pc=0x1c71 -DEBUG azoth_core::cfg_ir: Reindexed block 343: old start_pc=0x1750 -> new start_pc=0x1c8e -DEBUG azoth_core::cfg_ir: Reindexed block 344: old start_pc=0x1752 -> new start_pc=0x1c90 -DEBUG azoth_core::cfg_ir: Reindexed block 345: old start_pc=0x175b -> new start_pc=0x1c99 -DEBUG azoth_core::cfg_ir: Reindexed block 346: old start_pc=0x177d -> new start_pc=0x1cbb -DEBUG azoth_core::cfg_ir: Reindexed block 347: old start_pc=0x1784 -> new start_pc=0x1cc2 -DEBUG azoth_core::cfg_ir: Reindexed block 348: old start_pc=0x1789 -> new start_pc=0x1cc7 -DEBUG azoth_core::cfg_ir: Reindexed block 349: old start_pc=0x178e -> new start_pc=0x1ccc -DEBUG azoth_core::cfg_ir: Reindexed block 350: old start_pc=0x179c -> new start_pc=0x1cda -DEBUG azoth_core::cfg_ir: Reindexed block 351: old start_pc=0x17a3 -> new start_pc=0x1ce1 -DEBUG azoth_core::cfg_ir: Reindexed block 352: old start_pc=0x17ab -> new start_pc=0x1ce9 -DEBUG azoth_core::cfg_ir: Reindexed block 353: old start_pc=0x17c1 -> new start_pc=0x1cff -DEBUG azoth_core::cfg_ir: Reindexed block 354: old start_pc=0x17c9 -> new start_pc=0x1d07 -DEBUG azoth_core::cfg_ir: Reindexed block 355: old start_pc=0x17cf -> new start_pc=0x1d0d -DEBUG azoth_core::cfg_ir: Reindexed block 356: old start_pc=0x17d2 -> new start_pc=0x1d10 -DEBUG azoth_core::cfg_ir: Reindexed block 357: old start_pc=0x17d8 -> new start_pc=0x1d16 -DEBUG azoth_core::cfg_ir: Reindexed block 358: old start_pc=0x17d9 -> new start_pc=0x1d17 -DEBUG azoth_core::cfg_ir: Reindexed block 359: old start_pc=0x1814 -> new start_pc=0x1d8d -DEBUG azoth_core::cfg_ir: Reindexed block 360: old start_pc=0x181a -> new start_pc=0x1d93 -DEBUG azoth_core::cfg_ir: Reindexed block 361: old start_pc=0x181b -> new start_pc=0x1d94 -DEBUG azoth_core::cfg_ir: Reindexed block 362: old start_pc=0x1853 -> new start_pc=0x1e91 -DEBUG azoth_core::cfg_ir: Reindexed block 363: old start_pc=0x1866 -> new start_pc=0x1ea4 -DEBUG azoth_core::cfg_ir: Reindexed block 364: old start_pc=0x186b -> new start_pc=0x1ea9 -DEBUG azoth_core::cfg_ir: Reindexed block 365: old start_pc=0x1883 -> new start_pc=0x1ec1 -DEBUG azoth_core::cfg_ir: Reindexed block 366: old start_pc=0x188b -> new start_pc=0x1ec9 -DEBUG azoth_core::cfg_ir: Reindexed block 367: old start_pc=0x18a1 -> new start_pc=0x1edf -DEBUG azoth_core::cfg_ir: Reindexed block 368: old start_pc=0x18a8 -> new start_pc=0x1ee6 -DEBUG azoth_core::cfg_ir: Reindexed block 369: old start_pc=0x18c4 -> new start_pc=0x1f02 -DEBUG azoth_core::cfg_ir: Reindexed block 370: old start_pc=0x18c7 -> new start_pc=0x1f05 -DEBUG azoth_core::cfg_ir: Reindexed block 371: old start_pc=0x18ca -> new start_pc=0x1f08 -DEBUG azoth_core::cfg_ir: Reindexed block 372: old start_pc=0x18d3 -> new start_pc=0x1f11 -DEBUG azoth_core::cfg_ir: Reindexed block 373: old start_pc=0x18ec -> new start_pc=0x1f2a -DEBUG azoth_core::cfg_ir: Reindexed block 374: old start_pc=0x18f3 -> new start_pc=0x1f31 -DEBUG azoth_core::cfg_ir: Reindexed block 375: old start_pc=0x190a -> new start_pc=0x1f48 -DEBUG azoth_core::cfg_ir: Reindexed block 376: old start_pc=0x1910 -> new start_pc=0x1f4e -DEBUG azoth_core::cfg_ir: Reindexed block 377: old start_pc=0x192c -> new start_pc=0x1f6a -DEBUG azoth_core::cfg_ir: Reindexed block 378: old start_pc=0x192e -> new start_pc=0x1f6c -DEBUG azoth_core::cfg_ir: Reindexed block 379: old start_pc=0x1931 -> new start_pc=0x1f6f -DEBUG azoth_core::cfg_ir: Reindexed block 380: old start_pc=0x1939 -> new start_pc=0x1f77 -DEBUG azoth_core::cfg_ir: Reindexed block 381: old start_pc=0x1944 -> new start_pc=0x1f82 -DEBUG azoth_core::cfg_ir: Reindexed block 382: old start_pc=0x1953 -> new start_pc=0x1f91 -DEBUG azoth_core::cfg_ir: Reindexed block 383: old start_pc=0x195b -> new start_pc=0x1f99 -DEBUG azoth_core::cfg_ir: Reindexed block 384: old start_pc=0x1966 -> new start_pc=0x1fa4 -DEBUG azoth_core::cfg_ir: Reindexed block 385: old start_pc=0x196c -> new start_pc=0x1faa -DEBUG azoth_core::cfg_ir: Reindexed block 386: old start_pc=0x197a -> new start_pc=0x1fb8 -DEBUG azoth_core::cfg_ir: Reindexed block 387: old start_pc=0x1985 -> new start_pc=0x1fc3 -DEBUG azoth_core::cfg_ir: Reindexed block 388: old start_pc=0x1990 -> new start_pc=0x1fce -DEBUG azoth_core::cfg_ir: Reindexed block 389: old start_pc=0x1997 -> new start_pc=0x1fd5 -DEBUG azoth_core::cfg_ir: Reindexed block 390: old start_pc=0x19a0 -> new start_pc=0x1fde -DEBUG azoth_core::cfg_ir: Reindexed block 391: old start_pc=0x19b5 -> new start_pc=0x1ff3 -DEBUG azoth_core::cfg_ir: Reindexed block 392: old start_pc=0x19bc -> new start_pc=0x1ffa -DEBUG azoth_core::cfg_ir: Reindexed block 393: old start_pc=0x19c2 -> new start_pc=0x2000 -DEBUG azoth_core::cfg_ir: Reindexed block 394: old start_pc=0x19c3 -> new start_pc=0x2001 -DEBUG azoth_core::cfg_ir: Reindexed block 395: old start_pc=0x1a08 -> new start_pc=0x2082 -DEBUG azoth_core::cfg_ir: Reindexed block 396: old start_pc=0x1a15 -> new start_pc=0x208f -DEBUG azoth_core::cfg_ir: Reindexed block 397: old start_pc=0x1a26 -> new start_pc=0x20a0 -DEBUG azoth_core::cfg_ir: Reindexed block 398: old start_pc=0x1a35 -> new start_pc=0x20af -DEBUG azoth_core::cfg_ir: Reindexed block 399: old start_pc=0x1a41 -> new start_pc=0x20bb -DEBUG azoth_core::cfg_ir: Reindexed block 400: old start_pc=0x1a4e -> new start_pc=0x20c8 -DEBUG azoth_core::cfg_ir: Reindexed block 401: old start_pc=0x1a63 -> new start_pc=0x20dd -DEBUG azoth_core::cfg_ir: Reindexed block 402: old start_pc=0x1a69 -> new start_pc=0x20e3 -DEBUG azoth_core::cfg_ir: Reindexed block 403: old start_pc=0x1a76 -> new start_pc=0x20f0 -DEBUG azoth_core::cfg_ir: Reindexed block 404: old start_pc=0x1a85 -> new start_pc=0x20ff -DEBUG azoth_core::cfg_ir: Reindexed block 405: old start_pc=0x1a8b -> new start_pc=0x2105 -DEBUG azoth_core::cfg_ir: Reindexed block 406: old start_pc=0x1a93 -> new start_pc=0x210d -DEBUG azoth_core::cfg_ir: Reindexed block 407: old start_pc=0x1aa6 -> new start_pc=0x2120 -DEBUG azoth_core::cfg_ir: Reindexed block 408: old start_pc=0x1aab -> new start_pc=0x2125 -DEBUG azoth_core::cfg_ir: Reindexed block 409: old start_pc=0x1aba -> new start_pc=0x2134 -DEBUG azoth_core::cfg_ir: Reindexed block 410: old start_pc=0x1ad3 -> new start_pc=0x214d -DEBUG azoth_core::cfg_ir: Reindexed block 411: old start_pc=0x1ada -> new start_pc=0x2154 -DEBUG azoth_core::cfg_ir: Reindexed block 412: old start_pc=0x1ae4 -> new start_pc=0x215e -DEBUG azoth_core::cfg_ir: Reindexed block 413: old start_pc=0x1af0 -> new start_pc=0x216a -DEBUG azoth_core::cfg_ir: Reindexed block 414: old start_pc=0x1b04 -> new start_pc=0x217e -DEBUG azoth_core::cfg_ir: Reindexed block 415: old start_pc=0x1b0a -> new start_pc=0x2184 -DEBUG azoth_core::cfg_ir: Reindexed block 416: old start_pc=0x1b18 -> new start_pc=0x2192 -DEBUG azoth_core::cfg_ir: Reindexed block 417: old start_pc=0x1b1e -> new start_pc=0x2198 -DEBUG azoth_core::cfg_ir: Reindexed block 418: old start_pc=0x1b26 -> new start_pc=0x21a0 -DEBUG azoth_core::cfg_ir: Reindexed block 419: old start_pc=0x1b39 -> new start_pc=0x21b3 -DEBUG azoth_core::cfg_ir: Reindexed block 420: old start_pc=0x1b48 -> new start_pc=0x21c2 -DEBUG azoth_core::cfg_ir: Reindexed block 421: old start_pc=0x1b61 -> new start_pc=0x21db -DEBUG azoth_core::cfg_ir: Reindexed block 422: old start_pc=0x1b6b -> new start_pc=0x21e5 -DEBUG azoth_core::cfg_ir: Reindexed block 423: old start_pc=0x1b7c -> new start_pc=0x21f6 -DEBUG azoth_core::cfg_ir: Reindexed block 424: old start_pc=0x1b8d -> new start_pc=0x2207 -DEBUG azoth_core::cfg_ir: Reindexed block 425: old start_pc=0x1b9e -> new start_pc=0x2218 -DEBUG azoth_core::cfg_ir: Reindexed block 426: old start_pc=0x1baf -> new start_pc=0x2229 -DEBUG azoth_core::cfg_ir: Reindexed block 427: old start_pc=0x1bb9 -> new start_pc=0x2233 -DEBUG azoth_core::cfg_ir: Reindexed block 428: old start_pc=0x1bc6 -> new start_pc=0x2240 -DEBUG azoth_core::cfg_ir: Reindexed block 429: old start_pc=0x1bd7 -> new start_pc=0x2251 -DEBUG azoth_core::cfg_ir: Reindexed block 430: old start_pc=0x1be1 -> new start_pc=0x225b -DEBUG azoth_core::cfg_ir: Reindexed block 431: old start_pc=0x1bec -> new start_pc=0x2266 -DEBUG azoth_core::cfg_ir: Reindexed block 432: old start_pc=0x1bfd -> new start_pc=0x2277 -DEBUG azoth_core::cfg_ir: Reindexed block 433: old start_pc=0x1c0c -> new start_pc=0x2286 -DEBUG azoth_core::cfg_ir: Reindexed block 434: old start_pc=0x1c17 -> new start_pc=0x2291 -DEBUG azoth_core::cfg_ir: Reindexed block 435: old start_pc=0x1c30 -> new start_pc=0x22aa -DEBUG azoth_core::cfg_ir: Reindexed block 436: old start_pc=0x1c37 -> new start_pc=0x22b1 -DEBUG azoth_core::cfg_ir: Reindexed block 437: old start_pc=0x1c48 -> new start_pc=0x22c2 -DEBUG azoth_core::cfg_ir: Reindexed block 438: old start_pc=0x1c54 -> new start_pc=0x22ce -DEBUG azoth_core::cfg_ir: Reindexed block 439: old start_pc=0x1c5e -> new start_pc=0x22d8 -DEBUG azoth_core::cfg_ir: Reindexed block 440: old start_pc=0x1c61 -> new start_pc=0x22db -DEBUG azoth_core::cfg_ir: Reindexed block 441: old start_pc=0x1c69 -> new start_pc=0x22e3 -DEBUG azoth_core::cfg_ir: Reindexed block 442: old start_pc=0x1c75 -> new start_pc=0x22ef -DEBUG azoth_core::cfg_ir: Reindexed block 443: old start_pc=0x1c8b -> new start_pc=0x2305 -DEBUG azoth_core::cfg_ir: Reindexed block 444: old start_pc=0x1c92 -> new start_pc=0x230c -DEBUG azoth_core::cfg_ir: Reindexed block 445: old start_pc=0x1c9e -> new start_pc=0x2318 -DEBUG azoth_core::cfg_ir: Reindexed block 446: old start_pc=0x1ca5 -> new start_pc=0x231f -DEBUG azoth_core::cfg_ir: Reindexed block 447: old start_pc=0x1cae -> new start_pc=0x2328 -DEBUG azoth_core::cfg_ir: Reindexed block 448: old start_pc=0x1cb9 -> new start_pc=0x2333 -DEBUG azoth_core::cfg_ir: Reindexed block 449: old start_pc=0x1cbe -> new start_pc=0x2338 -DEBUG azoth_core::cfg_ir: Reindexed block 450: old start_pc=0x1cc6 -> new start_pc=0x2340 -DEBUG azoth_core::cfg_ir: Reindexed block 451: old start_pc=0x1ccf -> new start_pc=0x2349 -DEBUG azoth_core::cfg_ir: Reindexed block 452: old start_pc=0x1cd2 -> new start_pc=0x234c -DEBUG azoth_core::cfg_ir: Reindexed block 453: old start_pc=0x1cda -> new start_pc=0x2354 -DEBUG azoth_core::cfg_ir: Reindexed block 454: old start_pc=0x1cea -> new start_pc=0x2364 -DEBUG azoth_core::cfg_ir: Reindexed block 455: old start_pc=0x1d04 -> new start_pc=0x237e -DEBUG azoth_core::cfg_ir: Reindexed block 456: old start_pc=0x1d10 -> new start_pc=0x238a -DEBUG azoth_core::cfg_ir: Reindexed block 457: old start_pc=0x1d17 -> new start_pc=0x2391 -DEBUG azoth_core::cfg_ir: Reindexed block 458: old start_pc=0x1d37 -> new start_pc=0x23b1 -DEBUG azoth_core::cfg_ir: Reindexed block 459: old start_pc=0x1d3e -> new start_pc=0x23b8 -DEBUG azoth_core::cfg_ir: Reindexed block 460: old start_pc=0x1d46 -> new start_pc=0x23c0 -DEBUG azoth_core::cfg_ir: Reindexed block 461: old start_pc=0x1d8b -> new start_pc=0x2481 -DEBUG azoth_core::cfg_ir: Reindexed block 462: old start_pc=0x1d91 -> new start_pc=0x2487 -DEBUG azoth_core::cfg_ir: Reindexed block 463: old start_pc=0x1d92 -> new start_pc=0x2488 -DEBUG azoth_core::cfg_ir: Reindexed block 464: old start_pc=0x1de1 -> new start_pc=0x251e -DEBUG azoth_core::cfg_ir: Reindexed block 465: old start_pc=0x1e05 -> new start_pc=0x2542 -DEBUG azoth_core::cfg_ir: Reindexed block 466: old start_pc=0x1e0d -> new start_pc=0x254a -DEBUG azoth_core::cfg_ir: Reindexed block 467: old start_pc=0x1e28 -> new start_pc=0x2565 -DEBUG azoth_core::cfg_ir: Reindexed block 468: old start_pc=0x1e2f -> new start_pc=0x256c -DEBUG azoth_core::cfg_ir: Reindexed block 469: old start_pc=0x1e47 -> new start_pc=0x2584 -DEBUG azoth_core::cfg_ir: Reindexed block 470: old start_pc=0x1e4c -> new start_pc=0x2589 -DEBUG azoth_core::cfg_ir: Reindexed block 471: old start_pc=0x1e50 -> new start_pc=0x258d -DEBUG azoth_core::cfg_ir: Reindexed block 472: old start_pc=0x1e53 -> new start_pc=0x2590 -DEBUG azoth_core::cfg_ir: Reindexed block 473: old start_pc=0x1e5b -> new start_pc=0x2598 -DEBUG azoth_core::cfg_ir: Reindexed block 474: old start_pc=0x1e65 -> new start_pc=0x25a2 -DEBUG azoth_core::cfg_ir: Reindexed block 475: old start_pc=0x1e77 -> new start_pc=0x25b4 -DEBUG azoth_core::cfg_ir: Reindexed block 476: old start_pc=0x1e7c -> new start_pc=0x25b9 -DEBUG azoth_core::cfg_ir: Reindexed block 477: old start_pc=0x1e83 -> new start_pc=0x25c0 -DEBUG azoth_core::cfg_ir: Reindexed block 478: old start_pc=0x1e91 -> new start_pc=0x25ce -DEBUG azoth_core::cfg_ir: Reindexed block 479: old start_pc=0x1ea4 -> new start_pc=0x25e1 -DEBUG azoth_core::cfg_ir: Reindexed block 480: old start_pc=0x1eb1 -> new start_pc=0x25ee -DEBUG azoth_core::cfg_ir: Reindexed block 481: old start_pc=0x1eb7 -> new start_pc=0x25f4 -DEBUG azoth_core::cfg_ir: Reindexed block 482: old start_pc=0x1ecf -> new start_pc=0x260c -DEBUG azoth_core::cfg_ir: Reindexed block 483: old start_pc=0x1ed6 -> new start_pc=0x2613 -DEBUG azoth_core::cfg_ir: Reindexed block 484: old start_pc=0x1ee0 -> new start_pc=0x261d -DEBUG azoth_core::cfg_ir: Reindexed block 485: old start_pc=0x1ee9 -> new start_pc=0x2626 -DEBUG azoth_core::cfg_ir: Reindexed block 486: old start_pc=0x1ef2 -> new start_pc=0x262f -DEBUG azoth_core::cfg_ir: Reindexed block 487: old start_pc=0x1efa -> new start_pc=0x2637 -DEBUG azoth_core::cfg_ir: Reindexed block 488: old start_pc=0x1f00 -> new start_pc=0x263d -DEBUG azoth_core::cfg_ir: Reindexed block 489: old start_pc=0x1f02 -> new start_pc=0x263f -DEBUG azoth_core::cfg_ir: Reindexed block 490: old start_pc=0x1f0b -> new start_pc=0x2648 -DEBUG azoth_core::cfg_ir: Reindexed block 491: old start_pc=0x1f17 -> new start_pc=0x2654 -DEBUG azoth_core::cfg_ir: Reindexed block 492: old start_pc=0x1f22 -> new start_pc=0x265f -DEBUG azoth_core::cfg_ir: Reindexed block 493: old start_pc=0x1f30 -> new start_pc=0x266d -DEBUG azoth_core::cfg_ir: Reindexed block 494: old start_pc=0x1f3b -> new start_pc=0x2678 -DEBUG azoth_core::cfg_ir: Reindexed block 495: old start_pc=0x1f43 -> new start_pc=0x2680 -DEBUG azoth_core::cfg_ir: Reindexed block 496: old start_pc=0x1f49 -> new start_pc=0x2686 -DEBUG azoth_core::cfg_ir: Reindexed block 497: old start_pc=0x1f4f -> new start_pc=0x268c -DEBUG azoth_core::cfg_ir: Reindexed block 498: old start_pc=0x1f5b -> new start_pc=0x2698 -DEBUG azoth_core::cfg_ir: Reindexed block 499: old start_pc=0x1f74 -> new start_pc=0x26b1 -DEBUG azoth_core::cfg_ir: Reindexed block 500: old start_pc=0x1f79 -> new start_pc=0x26b6 -DEBUG azoth_core::cfg_ir: Reindexed block 501: old start_pc=0x1f83 -> new start_pc=0x26c0 -DEBUG azoth_core::cfg_ir: Reindexed block 502: old start_pc=0x1f89 -> new start_pc=0x26c6 -DEBUG azoth_core::cfg_ir: Reindexed block 503: old start_pc=0x1f8a -> new start_pc=0x26c7 -DEBUG azoth_core::cfg_ir: Reindexed block 504: old start_pc=0x1fc1 -> new start_pc=0x2710 -DEBUG azoth_core::cfg_ir: Reindexed block 505: old start_pc=0x1fc7 -> new start_pc=0x2716 -DEBUG azoth_core::cfg_ir: Reindexed block 506: old start_pc=0x1fc8 -> new start_pc=0x2717 -DEBUG azoth_core::cfg_ir: Reindexed block 507: old start_pc=0x200d -> new start_pc=0x275c -DEBUG azoth_core::cfg_ir: Reindexed block 508: old start_pc=0x2013 -> new start_pc=0x2762 -DEBUG azoth_core::cfg_ir: Reindexed block 509: old start_pc=0x2014 -> new start_pc=0x2763 -DEBUG azoth_core::cfg_ir: Reindexed block 510: old start_pc=0x2050 -> new start_pc=0x279f -DEBUG azoth_core::cfg_ir: Reindexed block 511: old start_pc=0x207b -> new start_pc=0x27ca -DEBUG azoth_core::cfg_ir: Reindexed block 512: old start_pc=0x2083 -> new start_pc=0x27d2 -DEBUG azoth_core::cfg_ir: Reindexed block 513: old start_pc=0x2098 -> new start_pc=0x27e7 -DEBUG azoth_core::cfg_ir: Reindexed block 514: old start_pc=0x209f -> new start_pc=0x27ee -DEBUG azoth_core::cfg_ir: Reindexed block 515: old start_pc=0x20bc -> new start_pc=0x280b -DEBUG azoth_core::cfg_ir: Reindexed block 516: old start_pc=0x20be -> new start_pc=0x280d -DEBUG azoth_core::cfg_ir: Reindexed block 517: old start_pc=0x20c9 -> new start_pc=0x2818 -DEBUG azoth_core::cfg_ir: Reindexed block 518: old start_pc=0x20d7 -> new start_pc=0x2826 -DEBUG azoth_core::cfg_ir: Reindexed block 519: old start_pc=0x20ec -> new start_pc=0x283b -DEBUG azoth_core::cfg_ir: Reindexed block 520: old start_pc=0x20f2 -> new start_pc=0x2841 -DEBUG azoth_core::cfg_ir: Reindexed block 521: old start_pc=0x20ff -> new start_pc=0x284e -DEBUG azoth_core::cfg_ir: Reindexed block 522: old start_pc=0x2105 -> new start_pc=0x2854 -DEBUG azoth_core::cfg_ir: Reindexed block 523: old start_pc=0x2111 -> new start_pc=0x2860 -DEBUG azoth_core::cfg_ir: Reindexed block 524: old start_pc=0x2121 -> new start_pc=0x2870 -DEBUG azoth_core::cfg_ir: Reindexed block 525: old start_pc=0x2130 -> new start_pc=0x287f -DEBUG azoth_core::cfg_ir: Reindexed block 526: old start_pc=0x213a -> new start_pc=0x2889 -DEBUG azoth_core::cfg_ir: Reindexed block 527: old start_pc=0x2149 -> new start_pc=0x2898 -DEBUG azoth_core::cfg_ir: Reindexed block 528: old start_pc=0x2155 -> new start_pc=0x28a4 -DEBUG azoth_core::cfg_ir: Reindexed block 529: old start_pc=0x215f -> new start_pc=0x28ae -DEBUG azoth_core::cfg_ir: Reindexed block 530: old start_pc=0x2162 -> new start_pc=0x28b1 -DEBUG azoth_core::cfg_ir: Reindexed block 531: old start_pc=0x216a -> new start_pc=0x28b9 -DEBUG azoth_core::cfg_ir: Reindexed block 532: old start_pc=0x2175 -> new start_pc=0x28c4 -DEBUG azoth_core::cfg_ir: Reindexed block 533: old start_pc=0x218b -> new start_pc=0x28da -DEBUG azoth_core::cfg_ir: Reindexed block 534: old start_pc=0x2191 -> new start_pc=0x28e0 -DEBUG azoth_core::cfg_ir: Reindexed block 535: old start_pc=0x219d -> new start_pc=0x28ec -DEBUG azoth_core::cfg_ir: Reindexed block 536: old start_pc=0x21a4 -> new start_pc=0x28f3 -DEBUG azoth_core::cfg_ir: Reindexed block 537: old start_pc=0x21ad -> new start_pc=0x28fc -DEBUG azoth_core::cfg_ir: Reindexed block 538: old start_pc=0x21b8 -> new start_pc=0x2907 -DEBUG azoth_core::cfg_ir: Reindexed block 539: old start_pc=0x21bc -> new start_pc=0x290b -DEBUG azoth_core::cfg_ir: Reindexed block 540: old start_pc=0x21c4 -> new start_pc=0x2913 -DEBUG azoth_core::cfg_ir: Reindexed block 541: old start_pc=0x21cd -> new start_pc=0x291c -DEBUG azoth_core::cfg_ir: Reindexed block 542: old start_pc=0x21d0 -> new start_pc=0x291f -DEBUG azoth_core::cfg_ir: Reindexed block 543: old start_pc=0x21d8 -> new start_pc=0x2927 -DEBUG azoth_core::cfg_ir: Reindexed block 544: old start_pc=0x21e7 -> new start_pc=0x2936 -DEBUG azoth_core::cfg_ir: Reindexed block 545: old start_pc=0x2201 -> new start_pc=0x2950 -DEBUG azoth_core::cfg_ir: Reindexed block 546: old start_pc=0x220d -> new start_pc=0x295c -DEBUG azoth_core::cfg_ir: Reindexed block 547: old start_pc=0x2214 -> new start_pc=0x2963 -DEBUG azoth_core::cfg_ir: Reindexed block 548: old start_pc=0x2234 -> new start_pc=0x2983 -DEBUG azoth_core::cfg_ir: Reindexed block 549: old start_pc=0x223a -> new start_pc=0x2989 -DEBUG azoth_core::cfg_ir: Reindexed block 550: old start_pc=0x2242 -> new start_pc=0x2991 -DEBUG azoth_core::cfg_ir: Reindexed block 551: old start_pc=0x224e -> new start_pc=0x299d -DEBUG azoth_core::cfg_ir: Reindexed block 552: old start_pc=0x2258 -> new start_pc=0x29a7 -DEBUG azoth_core::cfg_ir: Reindexed block 553: old start_pc=0x225b -> new start_pc=0x29aa -DEBUG azoth_core::cfg_ir: Reindexed block 554: old start_pc=0x2263 -> new start_pc=0x29b2 -DEBUG azoth_core::cfg_ir: Reindexed block 555: old start_pc=0x2269 -> new start_pc=0x29b8 -DEBUG azoth_core::cfg_ir: Reindexed block 556: old start_pc=0x227c -> new start_pc=0x29cb -DEBUG azoth_core::cfg_ir: Reindexed block 557: old start_pc=0x2288 -> new start_pc=0x29d7 -DEBUG azoth_core::cfg_ir: Reindexed block 558: old start_pc=0x228f -> new start_pc=0x29de -DEBUG azoth_core::cfg_ir: Reindexed block 559: old start_pc=0x2292 -> new start_pc=0x29e1 -DEBUG azoth_core::cfg_ir: Reindexed block 560: old start_pc=0x229c -> new start_pc=0x29eb -DEBUG azoth_core::cfg_ir: Reindexed block 561: old start_pc=0x22a5 -> new start_pc=0x29f4 -DEBUG azoth_core::cfg_ir: Reindexed block 562: old start_pc=0x22af -> new start_pc=0x29fe -DEBUG azoth_core::cfg_ir: Reindexed block 563: old start_pc=0x22b8 -> new start_pc=0x2a07 -DEBUG azoth_core::cfg_ir: Reindexed block 564: old start_pc=0x22c0 -> new start_pc=0x2a0f -DEBUG azoth_core::cfg_ir: Reindexed block 565: old start_pc=0x22c5 -> new start_pc=0x2a14 -DEBUG azoth_core::cfg_ir: Reindexed block 566: old start_pc=0x22da -> new start_pc=0x2a29 -DEBUG azoth_core::cfg_ir: Reindexed block 567: old start_pc=0x22db -> new start_pc=0x2a2a -DEBUG azoth_core::cfg_ir: Reindexed block 568: old start_pc=0x22e9 -> new start_pc=0x2a38 -DEBUG azoth_core::cfg_ir: Reindexed block 569: old start_pc=0x22ff -> new start_pc=0x2a4e -DEBUG azoth_core::cfg_ir: Reindexed block 570: old start_pc=0x2308 -> new start_pc=0x2a57 -DEBUG azoth_core::cfg_ir: Reindexed block 571: old start_pc=0x2311 -> new start_pc=0x2a60 -DEBUG azoth_core::cfg_ir: Reindexed block 572: old start_pc=0x231c -> new start_pc=0x2a6b -DEBUG azoth_core::cfg_ir: Reindexed block 573: old start_pc=0x2326 -> new start_pc=0x2a75 -DEBUG azoth_core::cfg_ir: Reindexed block 574: old start_pc=0x232c -> new start_pc=0x2a7b -DEBUG azoth_core::cfg_ir: Reindexed block 575: old start_pc=0x233b -> new start_pc=0x2a8a -DEBUG azoth_core::cfg_ir: Reindexed block 576: old start_pc=0x2347 -> new start_pc=0x2a96 -DEBUG azoth_core::cfg_ir: Reindexed block 577: old start_pc=0x234f -> new start_pc=0x2a9e -DEBUG azoth_core::cfg_ir: Reindexed block 578: old start_pc=0x2355 -> new start_pc=0x2aa4 -DEBUG azoth_core::cfg_ir: Reindexed block 579: old start_pc=0x2362 -> new start_pc=0x2ab1 -DEBUG azoth_core::cfg_ir: Reindexed block 580: old start_pc=0x2368 -> new start_pc=0x2ab7 -DEBUG azoth_core::cfg_ir: Reindexed block 581: old start_pc=0x237e -> new start_pc=0x2acd -DEBUG azoth_core::cfg_ir: Reindexed block 582: old start_pc=0x2386 -> new start_pc=0x2ad5 -DEBUG azoth_core::cfg_ir: Reindexed block 583: old start_pc=0x2391 -> new start_pc=0x2ae0 -DEBUG azoth_core::cfg_ir: Reindexed block 584: old start_pc=0x2398 -> new start_pc=0x2ae7 -DEBUG azoth_core::cfg_ir: Reindexed block 585: old start_pc=0x23a2 -> new start_pc=0x2af1 -DEBUG azoth_core::cfg_ir: Reindexed block 586: old start_pc=0x23aa -> new start_pc=0x2af9 -DEBUG azoth_core::cfg_ir: Reindexed block 587: old start_pc=0x23bb -> new start_pc=0x2b0a -DEBUG azoth_core::cfg_ir: Reindexed block 588: old start_pc=0x23c0 -> new start_pc=0x2b0f -DEBUG azoth_core::cfg_ir: Reindexed block 589: old start_pc=0x23cc -> new start_pc=0x2b1b -DEBUG azoth_core::cfg_ir: Reindexed block 590: old start_pc=0x23db -> new start_pc=0x2b2a -DEBUG azoth_core::cfg_ir: Reindexed block 591: old start_pc=0x23e5 -> new start_pc=0x2b34 -DEBUG azoth_core::cfg_ir: Reindexed block 592: old start_pc=0x23ec -> new start_pc=0x2b3b -DEBUG azoth_core::cfg_ir: Reindexed block 593: old start_pc=0x23f4 -> new start_pc=0x2b43 -DEBUG azoth_core::cfg_ir: Reindexed block 594: old start_pc=0x23fb -> new start_pc=0x2b4a -DEBUG azoth_core::cfg_ir: Reindexed block 595: old start_pc=0x2408 -> new start_pc=0x2b57 -DEBUG azoth_core::cfg_ir: Reindexed block 596: old start_pc=0x2414 -> new start_pc=0x2b63 -DEBUG azoth_core::cfg_ir: Reindexed block 597: old start_pc=0x2421 -> new start_pc=0x2b70 -DEBUG azoth_core::cfg_ir: Reindexed block 598: old start_pc=0x242f -> new start_pc=0x2b7e -DEBUG azoth_core::cfg_ir: Reindexed block 599: old start_pc=0x2437 -> new start_pc=0x2b86 -DEBUG azoth_core::cfg_ir: Reindexed block 600: old start_pc=0x244b -> new start_pc=0x2b9a -DEBUG azoth_core::cfg_ir: Reindexed block 601: old start_pc=0x2451 -> new start_pc=0x2ba0 -DEBUG azoth_core::cfg_ir: Reindexed block 602: old start_pc=0x245a -> new start_pc=0x2ba9 -DEBUG azoth_core::cfg_ir: Reindexed block 603: old start_pc=0x2461 -> new start_pc=0x2bb0 -DEBUG azoth_core::cfg_ir: Reindexed block 604: old start_pc=0x2465 -> new start_pc=0x2bb4 -DEBUG azoth_core::cfg_ir: Reindexed block 605: old start_pc=0x2470 -> new start_pc=0x2bbf -DEBUG azoth_core::cfg_ir: Reindexed block 606: old start_pc=0x247a -> new start_pc=0x2bc9 -DEBUG azoth_core::cfg_ir: Reindexed block 607: old start_pc=0x2484 -> new start_pc=0x2bd3 -DEBUG azoth_core::cfg_ir: Reindexed block 608: old start_pc=0x2490 -> new start_pc=0x2bdf -DEBUG azoth_core::cfg_ir: Reindexed block 609: old start_pc=0x249b -> new start_pc=0x2bea -DEBUG azoth_core::cfg_ir: Reindexed block 610: old start_pc=0x24a5 -> new start_pc=0x2bf4 -DEBUG azoth_core::cfg_ir: Reindexed block 611: old start_pc=0x24b0 -> new start_pc=0x2bff -DEBUG azoth_core::cfg_ir: Reindexed block 612: old start_pc=0x24c4 -> new start_pc=0x2c13 -DEBUG azoth_core::cfg_ir: Reindexed block 613: old start_pc=0x24d0 -> new start_pc=0x2c1f -DEBUG azoth_core::cfg_ir: Reindexed block 614: old start_pc=0x24d9 -> new start_pc=0x2c28 -DEBUG azoth_core::cfg_ir: Reindexed block 615: old start_pc=0x24e2 -> new start_pc=0x2c31 -DEBUG azoth_core::cfg_ir: Reindexed block 616: old start_pc=0x24eb -> new start_pc=0x2c3a -DEBUG azoth_core::cfg_ir: Reindexed block 617: old start_pc=0x24f4 -> new start_pc=0x2c43 -DEBUG azoth_core::cfg_ir: Reindexed block 618: old start_pc=0x250c -> new start_pc=0x2c5b -DEBUG azoth_core::cfg_ir: Reindexed block 619: old start_pc=0x2513 -> new start_pc=0x2c62 -DEBUG azoth_core::cfg_ir: Reindexed block 620: old start_pc=0x251c -> new start_pc=0x2c6b -DEBUG azoth_core::cfg_ir: Reindexed block 621: old start_pc=0x252d -> new start_pc=0x2c7c -DEBUG azoth_core::cfg_ir: Reindexed block 622: old start_pc=0x2536 -> new start_pc=0x2c85 -DEBUG azoth_core::cfg_ir: Reindexed block 623: old start_pc=0x2544 -> new start_pc=0x2c93 -DEBUG azoth_core::cfg_ir: Reindexed block 624: old start_pc=0x2559 -> new start_pc=0x2ca8 -DEBUG azoth_core::cfg_ir: Reindexed block 625: old start_pc=0x2560 -> new start_pc=0x2caf -DEBUG azoth_core::cfg_ir: Reindexed block 626: old start_pc=0x2567 -> new start_pc=0x2cb6 -DEBUG azoth_core::cfg_ir: Reindexed block 627: old start_pc=0x256a -> new start_pc=0x2cb9 -DEBUG azoth_core::cfg_ir: Reindexed block 628: old start_pc=0x2573 -> new start_pc=0x2cc2 -DEBUG azoth_core::cfg_ir: Reindexed block 629: old start_pc=0x257c -> new start_pc=0x2ccb -DEBUG azoth_core::cfg_ir: Reindexed block 630: old start_pc=0x2592 -> new start_pc=0x2ce1 -DEBUG azoth_core::cfg_ir: Reindexed block 631: old start_pc=0x259e -> new start_pc=0x2ced -DEBUG azoth_core::cfg_ir: Reindexed block 632: old start_pc=0x25a5 -> new start_pc=0x2cf4 -DEBUG azoth_core::cfg_ir: Reindexed block 633: old start_pc=0x25ea -> new start_pc=0x2d60 -DEBUG azoth_core::cfg_ir: Reindexed block 634: old start_pc=0x25f0 -> new start_pc=0x2d66 -DEBUG azoth_core::cfg_ir: Reindexed block 635: old start_pc=0x25f1 -> new start_pc=0x2d67 -DEBUG azoth_core::cfg_ir: Reindexed block 636: old start_pc=0x262b -> new start_pc=0x2da1 -DEBUG azoth_core::cfg_ir: Reindexed block 637: old start_pc=0x2631 -> new start_pc=0x2da7 -DEBUG azoth_core::cfg_ir: Reindexed block 638: old start_pc=0x2632 -> new start_pc=0x2da8 -DEBUG azoth_core::cfg_ir: Reindexed block 639: old start_pc=0x266f -> new start_pc=0x2e99 -DEBUG azoth_core::cfg_ir: Reindexed block 640: old start_pc=0x2675 -> new start_pc=0x2e9f -DEBUG azoth_core::cfg_ir: Reindexed block 641: old start_pc=0x2676 -> new start_pc=0x2ea0 -DEBUG azoth_core::cfg_ir: Reindexed block 642: old start_pc=0x26b1 -> new start_pc=0x2f52 -DEBUG azoth_core::cfg_ir: Reindexed block 643: old start_pc=0x26b7 -> new start_pc=0x2f58 -DEBUG azoth_core::cfg_ir: Reindexed block 644: old start_pc=0x26b8 -> new start_pc=0x2f59 -DEBUG azoth_core::cfg_ir: Reindexed block 645: old start_pc=0x26f4 -> new start_pc=0x2f95 -DEBUG azoth_core::cfg_ir: Reindexed block 646: old start_pc=0x26fa -> new start_pc=0x2f9b -DEBUG azoth_core::cfg_ir: Reindexed block 647: old start_pc=0x26fb -> new start_pc=0x2f9c -DEBUG azoth_core::cfg_ir: Reindexed block 648: old start_pc=0x2740 -> new start_pc=0x2fe1 -DEBUG azoth_core::cfg_ir: Reindexed block 649: old start_pc=0x27ad -> new start_pc=0x305b -DEBUG azoth_core::cfg_ir: Reindexed block 650: old start_pc=0x27b5 -> new start_pc=0x3063 -DEBUG azoth_core::cfg_ir: Reindexed block 651: old start_pc=0x27bc -> new start_pc=0x306a -DEBUG azoth_core::cfg_ir: Reindexed block 652: old start_pc=0x27c3 -> new start_pc=0x3071 -DEBUG azoth_core::cfg_ir: Reindexed block 653: old start_pc=0x27e0 -> new start_pc=0x308e -DEBUG azoth_core::cfg_ir: Reindexed block 654: old start_pc=0x27e8 -> new start_pc=0x3096 -DEBUG azoth_core::cfg_ir: Reindexed block 655: old start_pc=0x27ee -> new start_pc=0x309c -DEBUG azoth_core::cfg_ir: Reindexed block 656: old start_pc=0x27f5 -> new start_pc=0x30a3 -DEBUG azoth_core::cfg_ir: Reindexed block 657: old start_pc=0x27fc -> new start_pc=0x30aa -DEBUG azoth_core::cfg_ir: Reindexed block 658: old start_pc=0x2803 -> new start_pc=0x30b1 -DEBUG azoth_core::cfg_ir: Reindexed block 659: old start_pc=0x280f -> new start_pc=0x30bd -DEBUG azoth_core::cfg_ir: Reindexed block 660: old start_pc=0x2822 -> new start_pc=0x30d0 -DEBUG azoth_core::cfg_ir: Reindexed block 661: old start_pc=0x2829 -> new start_pc=0x30d7 -DEBUG azoth_core::cfg_ir: Reindexed block 662: old start_pc=0x282f -> new start_pc=0x30dd -DEBUG azoth_core::cfg_ir: Reindexed block 663: old start_pc=0x283e -> new start_pc=0x30ec -DEBUG azoth_core::cfg_ir: Reindexed block 664: old start_pc=0x2842 -> new start_pc=0x30f0 -DEBUG azoth_core::cfg_ir: Reindexed block 665: old start_pc=0x284c -> new start_pc=0x30fa -DEBUG azoth_core::cfg_ir: Reindexed block 666: old start_pc=0x2864 -> new start_pc=0x3112 -DEBUG azoth_core::cfg_ir: Reindexed block 667: old start_pc=0x286d -> new start_pc=0x311b -DEBUG azoth_core::cfg_ir: Reindexed block 668: old start_pc=0x287c -> new start_pc=0x312a -DEBUG azoth_core::cfg_ir: Reindexed block 669: old start_pc=0x2881 -> new start_pc=0x312f -DEBUG azoth_core::cfg_ir: Reindexed block 670: old start_pc=0x288b -> new start_pc=0x3139 -DEBUG azoth_core::cfg_ir: Reindexed block 671: old start_pc=0x2898 -> new start_pc=0x3146 -DEBUG azoth_core::cfg_ir: Reindexed block 672: old start_pc=0x28a8 -> new start_pc=0x3156 -DEBUG azoth_core::cfg_ir: Reindexed block 673: old start_pc=0x28b7 -> new start_pc=0x3165 -DEBUG azoth_core::cfg_ir: Reindexed block 674: old start_pc=0x28bf -> new start_pc=0x316d -DEBUG azoth_core::cfg_ir: Reindexed block 675: old start_pc=0x28c9 -> new start_pc=0x3177 -DEBUG azoth_core::cfg_ir: Reindexed block 676: old start_pc=0x28da -> new start_pc=0x3188 -DEBUG azoth_core::cfg_ir: Reindexed block 677: old start_pc=0x28e4 -> new start_pc=0x3192 -DEBUG azoth_core::cfg_ir: Reindexed block 678: old start_pc=0x28f1 -> new start_pc=0x319f -DEBUG azoth_core::cfg_ir: Reindexed block 679: old start_pc=0x28f7 -> new start_pc=0x31a5 -DEBUG azoth_core::cfg_ir: Reindexed block 680: old start_pc=0x28ff -> new start_pc=0x31ad -DEBUG azoth_core::cfg_ir: Reindexed block 681: old start_pc=0x290e -> new start_pc=0x31bc -DEBUG azoth_core::cfg_ir: Reindexed block 682: old start_pc=0x291d -> new start_pc=0x31cb -DEBUG azoth_core::cfg_ir: Reindexed block 683: old start_pc=0x2936 -> new start_pc=0x31e4 -DEBUG azoth_core::cfg_ir: Reindexed block 684: old start_pc=0x293c -> new start_pc=0x31ea -DEBUG azoth_core::cfg_ir: Reindexed block 685: old start_pc=0x2946 -> new start_pc=0x31f4 -DEBUG azoth_core::cfg_ir: Reindexed block 686: old start_pc=0x294f -> new start_pc=0x31fd -DEBUG azoth_core::cfg_ir: Reindexed block 687: old start_pc=0x295f -> new start_pc=0x320d -DEBUG azoth_core::cfg_ir: Reindexed block 688: old start_pc=0x296c -> new start_pc=0x321a -DEBUG azoth_core::cfg_ir: Reindexed block 689: old start_pc=0x2972 -> new start_pc=0x3220 -DEBUG azoth_core::cfg_ir: Reindexed block 690: old start_pc=0x297a -> new start_pc=0x3228 -DEBUG azoth_core::cfg_ir: Reindexed block 691: old start_pc=0x2989 -> new start_pc=0x3237 -DEBUG azoth_core::cfg_ir: Reindexed block 692: old start_pc=0x2998 -> new start_pc=0x3246 -DEBUG azoth_core::cfg_ir: Reindexed block 693: old start_pc=0x29b1 -> new start_pc=0x325f -DEBUG azoth_core::cfg_ir: Reindexed block 694: old start_pc=0x29bb -> new start_pc=0x3269 -DEBUG azoth_core::cfg_ir: Reindexed block 695: old start_pc=0x29c4 -> new start_pc=0x3272 -DEBUG azoth_core::cfg_ir: Reindexed block 696: old start_pc=0x29d2 -> new start_pc=0x3280 -DEBUG azoth_core::cfg_ir: Reindexed block 697: old start_pc=0x29dc -> new start_pc=0x328a -DEBUG azoth_core::cfg_ir: Reindexed block 698: old start_pc=0x29eb -> new start_pc=0x3299 -DEBUG azoth_core::cfg_ir: Reindexed block 699: old start_pc=0x29f0 -> new start_pc=0x329e -DEBUG azoth_core::cfg_ir: Reindexed block 700: old start_pc=0x29f5 -> new start_pc=0x32a3 -DEBUG azoth_core::cfg_ir: Reindexed block 701: old start_pc=0x2a0a -> new start_pc=0x32b8 -DEBUG azoth_core::cfg_ir: Reindexed block 702: old start_pc=0x2a0e -> new start_pc=0x32bc -DEBUG azoth_core::cfg_ir: Reindexed block 703: old start_pc=0x2a18 -> new start_pc=0x32c6 -DEBUG azoth_core::cfg_ir: Reindexed block 704: old start_pc=0x2a30 -> new start_pc=0x32de -DEBUG azoth_core::cfg_ir: Reindexed block 705: old start_pc=0x2a39 -> new start_pc=0x32e7 -DEBUG azoth_core::cfg_ir: Reindexed block 706: old start_pc=0x2a49 -> new start_pc=0x32f7 -DEBUG azoth_core::cfg_ir: Reindexed block 707: old start_pc=0x2a58 -> new start_pc=0x3306 -DEBUG azoth_core::cfg_ir: Reindexed block 708: old start_pc=0x2a62 -> new start_pc=0x3310 -DEBUG azoth_core::cfg_ir: Reindexed block 709: old start_pc=0x2a78 -> new start_pc=0x3326 -DEBUG azoth_core::cfg_ir: Reindexed block 710: old start_pc=0x2a89 -> new start_pc=0x3337 -DEBUG azoth_core::cfg_ir: Reindexed block 711: old start_pc=0x2a95 -> new start_pc=0x3343 -DEBUG azoth_core::cfg_ir: Reindexed block 712: old start_pc=0x2a9c -> new start_pc=0x334a -DEBUG azoth_core::cfg_ir: Reindexed block 713: old start_pc=0x2aa1 -> new start_pc=0x334f -DEBUG azoth_core::cfg_ir: Reindexed block 714: old start_pc=0x2ab2 -> new start_pc=0x3360 -DEBUG azoth_core::cfg_ir: Reindexed block 715: old start_pc=0x2ab7 -> new start_pc=0x3365 -DEBUG azoth_core::cfg_ir: Reindexed block 716: old start_pc=0x2aba -> new start_pc=0x3368 -DEBUG azoth_core::cfg_ir: Reindexed block 717: old start_pc=0x2ac4 -> new start_pc=0x3372 -DEBUG azoth_core::cfg_ir: Reindexed block 718: old start_pc=0x2adc -> new start_pc=0x338a -DEBUG azoth_core::cfg_ir: Reindexed block 719: old start_pc=0x2aeb -> new start_pc=0x3399 -DEBUG azoth_core::cfg_ir: Reindexed block 720: old start_pc=0x2af0 -> new start_pc=0x339e -DEBUG azoth_core::cfg_ir: Reindexed block 721: old start_pc=0x2b06 -> new start_pc=0x33b4 -DEBUG azoth_core::cfg_ir: Reindexed block 722: old start_pc=0x2b18 -> new start_pc=0x33c6 -DEBUG azoth_core::cfg_ir: Reindexed block 723: old start_pc=0x2b1f -> new start_pc=0x33cd -DEBUG azoth_core::cfg_ir: Reindexed block 724: old start_pc=0x2b21 -> new start_pc=0x33cf -DEBUG azoth_core::cfg_ir: Reindexed block 725: old start_pc=0x2b2f -> new start_pc=0x33dd -DEBUG azoth_core::cfg_ir: Reindexed block 726: old start_pc=0x2b39 -> new start_pc=0x33e7 -DEBUG azoth_core::cfg_ir: Reindexed block 727: old start_pc=0x2b3f -> new start_pc=0x33ed -DEBUG azoth_core::cfg_ir: Reindexed block 728: old start_pc=0x2b40 -> new start_pc=0x33ee -DEBUG azoth_core::cfg_ir: Reindexed block 729: old start_pc=0x2b4a -> new start_pc=0x33f8 -DEBUG azoth_core::cfg_ir: Reindexed block 730: old start_pc=0x2b56 -> new start_pc=0x3404 -DEBUG azoth_core::cfg_ir: Reindexed block 731: old start_pc=0x2b5c -> new start_pc=0x340a -DEBUG azoth_core::cfg_ir: Reindexed block 732: old start_pc=0x2b61 -> new start_pc=0x340f -DEBUG azoth_core::cfg_ir: Reindexed block 733: old start_pc=0x2b79 -> new start_pc=0x3427 -DEBUG azoth_core::cfg_ir: Reindexed block 734: old start_pc=0x2b7f -> new start_pc=0x342d -DEBUG azoth_core::cfg_ir: Reindexed block 735: old start_pc=0x2b85 -> new start_pc=0x3433 -DEBUG azoth_core::cfg_ir: Reindexed block 736: old start_pc=0x2b9a -> new start_pc=0x3448 -DEBUG azoth_core::cfg_ir: Reindexed block 737: old start_pc=0x2ba2 -> new start_pc=0x3450 -DEBUG azoth_core::cfg_ir: Reindexed block 738: old start_pc=0x2ba9 -> new start_pc=0x3457 -DEBUG azoth_core::cfg_ir: Reindexed block 739: old start_pc=0x2bb1 -> new start_pc=0x345f -DEBUG azoth_core::cfg_ir: Reindexed block 740: old start_pc=0x2bc9 -> new start_pc=0x3477 -DEBUG azoth_core::cfg_ir: Reindexed block 741: old start_pc=0x2bcf -> new start_pc=0x347d -DEBUG azoth_core::cfg_ir: Reindexed block 742: old start_pc=0x2bd8 -> new start_pc=0x3486 -DEBUG azoth_core::cfg_ir: Reindexed block 743: old start_pc=0x2bdf -> new start_pc=0x348d -DEBUG azoth_core::cfg_ir: Reindexed block 744: old start_pc=0x2bfd -> new start_pc=0x34ab -DEBUG azoth_core::cfg_ir: Reindexed block 745: old start_pc=0x2c05 -> new start_pc=0x34b3 -DEBUG azoth_core::cfg_ir: Reindexed block 746: old start_pc=0x2c0c -> new start_pc=0x34ba -DEBUG azoth_core::cfg_ir: Reindexed block 747: old start_pc=0x2c51 -> new start_pc=0x34ff -DEBUG azoth_core::cfg_ir: Reindexed block 748: old start_pc=0x2c5c -> new start_pc=0x350a -DEBUG azoth_core::cfg_ir: Reindexed block 749: old start_pc=0x2c6d -> new start_pc=0x351b -DEBUG azoth_core::cfg_ir: Reindexed block 750: old start_pc=0x2c7c -> new start_pc=0x352a -DEBUG azoth_core::cfg_ir: Reindexed block 751: old start_pc=0x2c87 -> new start_pc=0x3535 -DEBUG azoth_core::cfg_ir: Reindexed block 752: old start_pc=0x2c98 -> new start_pc=0x3546 -DEBUG azoth_core::cfg_ir: Reindexed block 753: old start_pc=0x2ca4 -> new start_pc=0x3552 -DEBUG azoth_core::cfg_ir: Reindexed block 754: old start_pc=0x2cae -> new start_pc=0x355c -DEBUG azoth_core::cfg_ir: Reindexed block 755: old start_pc=0x2cb1 -> new start_pc=0x355f -DEBUG azoth_core::cfg_ir: Reindexed block 756: old start_pc=0x2cb9 -> new start_pc=0x3567 -DEBUG azoth_core::cfg_ir: Reindexed block 757: old start_pc=0x2cc5 -> new start_pc=0x3573 -DEBUG azoth_core::cfg_ir: Reindexed block 758: old start_pc=0x2cdb -> new start_pc=0x3589 -DEBUG azoth_core::cfg_ir: Reindexed block 759: old start_pc=0x2ce7 -> new start_pc=0x3595 -DEBUG azoth_core::cfg_ir: Reindexed block 760: old start_pc=0x2cee -> new start_pc=0x359c -DEBUG azoth_core::cfg_ir: Reindexed block 761: old start_pc=0x2cf7 -> new start_pc=0x35a5 -DEBUG azoth_core::cfg_ir: Reindexed block 762: old start_pc=0x2d02 -> new start_pc=0x35b0 -DEBUG azoth_core::cfg_ir: Reindexed block 763: old start_pc=0x2d07 -> new start_pc=0x35b5 -DEBUG azoth_core::cfg_ir: Reindexed block 764: old start_pc=0x2d0f -> new start_pc=0x35bd -DEBUG azoth_core::cfg_ir: Reindexed block 765: old start_pc=0x2d18 -> new start_pc=0x35c6 -DEBUG azoth_core::cfg_ir: Reindexed block 766: old start_pc=0x2d1b -> new start_pc=0x35c9 -DEBUG azoth_core::cfg_ir: Reindexed block 767: old start_pc=0x2d23 -> new start_pc=0x35d1 -DEBUG azoth_core::cfg_ir: Reindexed block 768: old start_pc=0x2d33 -> new start_pc=0x35e1 -DEBUG azoth_core::cfg_ir: Reindexed block 769: old start_pc=0x2d4d -> new start_pc=0x35fb -DEBUG azoth_core::cfg_ir: Reindexed block 770: old start_pc=0x2d59 -> new start_pc=0x3607 -DEBUG azoth_core::cfg_ir: Reindexed block 771: old start_pc=0x2d60 -> new start_pc=0x360e -DEBUG azoth_core::cfg_ir: Reindexed block 772: old start_pc=0x2d80 -> new start_pc=0x362e -DEBUG azoth_core::cfg_ir: Reindexed block 773: old start_pc=0x2d88 -> new start_pc=0x3636 -DEBUG azoth_core::cfg_ir: Reindexed block 774: old start_pc=0x2dcd -> new start_pc=0x36a9 -DEBUG azoth_core::cfg_ir: Reindexed block 775: old start_pc=0x2dce -> new start_pc=0x36aa -DEBUG azoth_core::cfg_ir: Reindexed block 776: old start_pc=0x2dd0 -> new start_pc=0x36ac -DEBUG azoth_core::cfg_ir: Reindexed block 777: old start_pc=0x2dde -> new start_pc=0x36ba -DEBUG azoth_core::cfg_ir: Reindexed block 778: old start_pc=0x2de3 -> new start_pc=0x36bf -DEBUG azoth_core::cfg_ir: Reindexed block 779: old start_pc=0x2de5 -> new start_pc=0x36c1 -DEBUG azoth_core::cfg_ir: Reindexed block 780: old start_pc=0x2df2 -> new start_pc=0x36ce -DEBUG azoth_core::cfg_ir: Reindexed block 781: old start_pc=0x2df7 -> new start_pc=0x36d3 -DEBUG azoth_core::cfg_ir: Reindexed block 782: old start_pc=0x2df9 -> new start_pc=0x36d5 -DEBUG azoth_core::cfg_ir: Reindexed block 783: old start_pc=0x2e07 -> new start_pc=0x36e3 -DEBUG azoth_core::cfg_ir: Reindexed block 784: old start_pc=0x2e0c -> new start_pc=0x36e8 -DEBUG azoth_core::cfg_ir: Reindexed block 785: old start_pc=0x2e0e -> new start_pc=0x36ea -DEBUG azoth_core::cfg_ir: Reindexed block 786: old start_pc=0x2e1b -> new start_pc=0x36f7 -DEBUG azoth_core::cfg_ir: Reindexed block 787: old start_pc=0x2e20 -> new start_pc=0x36fc -DEBUG azoth_core::cfg_ir: Reindexed block 788: old start_pc=0x2e22 -> new start_pc=0x36fe -DEBUG azoth_core::cfg_ir: Reindexed block 789: old start_pc=0x2e2f -> new start_pc=0x370b -DEBUG azoth_core::cfg_ir: Reindexed block 790: old start_pc=0x2e34 -> new start_pc=0x3710 -DEBUG azoth_core::cfg_ir: Reindexed block 791: old start_pc=0x2e36 -> new start_pc=0x3712 -DEBUG azoth_core::cfg_ir: Reindexed block 792: old start_pc=0x2e44 -> new start_pc=0x3720 -DEBUG azoth_core::cfg_ir: Reindexed block 793: old start_pc=0x2e49 -> new start_pc=0x3725 -DEBUG azoth_core::cfg_ir: Reindexed block 794: old start_pc=0x2e4b -> new start_pc=0x3727 -DEBUG azoth_core::cfg_ir: Reindexed block 795: old start_pc=0x2e59 -> new start_pc=0x3735 -DEBUG azoth_core::cfg_ir: Reindexed block 796: old start_pc=0x2e5e -> new start_pc=0x373a -DEBUG azoth_core::cfg_ir: Reindexed block 797: old start_pc=0x2e60 -> new start_pc=0x373c -DEBUG azoth_core::cfg_ir: Reindexed block 798: old start_pc=0x2e6e -> new start_pc=0x374a -DEBUG azoth_core::cfg_ir: Reindexed block 799: old start_pc=0x2e73 -> new start_pc=0x374f -DEBUG azoth_core::cfg_ir: Reindexed block 800: old start_pc=0x2e75 -> new start_pc=0x3751 -DEBUG azoth_core::cfg_ir: Reindexed block 801: old start_pc=0x2e83 -> new start_pc=0x375f -DEBUG azoth_core::cfg_ir: Reindexed block 802: old start_pc=0x2e88 -> new start_pc=0x3764 -DEBUG azoth_core::cfg_ir: Reindexed block 803: old start_pc=0x2e8a -> new start_pc=0x3766 -DEBUG azoth_core::cfg_ir: Reindexed block 804: old start_pc=0x2e98 -> new start_pc=0x3774 -DEBUG azoth_core::cfg_ir: Reindexed block 805: old start_pc=0x2e9d -> new start_pc=0x3779 -DEBUG azoth_core::cfg_ir: Reindexed block 806: old start_pc=0x2e9f -> new start_pc=0x377b -DEBUG azoth_core::cfg_ir: Reindexed block 807: old start_pc=0x2ead -> new start_pc=0x3789 -DEBUG azoth_core::cfg_ir: Reindexed block 808: old start_pc=0x2eb2 -> new start_pc=0x378e -DEBUG azoth_core::cfg_ir: Reindexed block 809: old start_pc=0x2eb4 -> new start_pc=0x3790 -DEBUG azoth_core::cfg_ir: Reindexed block 810: old start_pc=0x2ec2 -> new start_pc=0x379e -DEBUG azoth_core::cfg_ir: Reindexed block 811: old start_pc=0x2ec7 -> new start_pc=0x37a3 -DEBUG azoth_core::cfg_ir: Reindexed block 812: old start_pc=0x2ec9 -> new start_pc=0x37a5 -DEBUG azoth_core::cfg_ir: Reindexed block 813: old start_pc=0x2ed7 -> new start_pc=0x37b3 -DEBUG azoth_core::cfg_ir: Reindexed block 814: old start_pc=0x2edc -> new start_pc=0x37b8 -DEBUG azoth_core::cfg_ir: Reindexed block 815: old start_pc=0x2ede -> new start_pc=0x37ba -DEBUG azoth_core::cfg_ir: Reindexed block 816: old start_pc=0x2eeb -> new start_pc=0x37c7 -DEBUG azoth_core::cfg_ir: Reindexed block 817: old start_pc=0x2ef0 -> new start_pc=0x37cc -DEBUG azoth_core::cfg_ir: Reindexed block 818: old start_pc=0x2ef2 -> new start_pc=0x37ce -DEBUG azoth_core::cfg_ir: Reindexed block 819: old start_pc=0x2f00 -> new start_pc=0x37dc -DEBUG azoth_core::cfg_ir: Reindexed block 820: old start_pc=0x2f05 -> new start_pc=0x37e1 -DEBUG azoth_core::cfg_ir: Reindexed block 821: old start_pc=0x2f07 -> new start_pc=0x37e3 -DEBUG azoth_core::cfg_ir: Reindexed block 822: old start_pc=0x2f15 -> new start_pc=0x37f1 -DEBUG azoth_core::cfg_ir: Reindexed block 823: old start_pc=0x2f1a -> new start_pc=0x37f6 -DEBUG azoth_core::cfg_ir: Reindexed block 824: old start_pc=0x2f1c -> new start_pc=0x37f8 -DEBUG azoth_core::cfg_ir: Reindexed block 825: old start_pc=0x2f2a -> new start_pc=0x3806 -DEBUG azoth_core::cfg_ir: Reindexed block 826: old start_pc=0x2f2f -> new start_pc=0x380b -DEBUG azoth_core::cfg_ir: Reindexed block 827: old start_pc=0x2f31 -> new start_pc=0x380d -DEBUG azoth_core::cfg_ir: Reindexed block 828: old start_pc=0x2f3f -> new start_pc=0x381b -DEBUG azoth_core::cfg_ir: Reindexed block 829: old start_pc=0x2f44 -> new start_pc=0x3820 -DEBUG azoth_core::cfg_ir: Reindexed block 830: old start_pc=0x2f46 -> new start_pc=0x3822 -DEBUG azoth_core::cfg_ir: Reindexed block 831: old start_pc=0x2f53 -> new start_pc=0x382f -DEBUG azoth_core::cfg_ir: Reindexed block 832: old start_pc=0x2f58 -> new start_pc=0x3834 -DEBUG azoth_core::cfg_ir: Reindexed block 833: old start_pc=0x2f6a -> new start_pc=0x3846 -DEBUG azoth_core::cfg_ir: Reindexed block 834: old start_pc=0x2f81 -> new start_pc=0x385d -DEBUG azoth_core::cfg_ir: Reindexed block 835: old start_pc=0x2f93 -> new start_pc=0x386f -DEBUG azoth_core::cfg_ir: Reindexed block 836: old start_pc=0x2faa -> new start_pc=0x3886 -DEBUG azoth_core::cfg_ir: Reindexed block 837: old start_pc=0x2fbc -> new start_pc=0x3898 -DEBUG azoth_core::cfg_ir: Reindexed block 838: old start_pc=0x2fd3 -> new start_pc=0x38af -DEBUG azoth_core::cfg_ir: Reindexed block 839: old start_pc=0x2fe5 -> new start_pc=0x38c1 -DEBUG azoth_core::cfg_ir: Reindexed block 840: old start_pc=0x2ffc -> new start_pc=0x38d8 -DEBUG azoth_core::cfg_ir: Reindexed block 841: old start_pc=0x300e -> new start_pc=0x38ea -DEBUG azoth_core::cfg_ir: Reindexed block 842: old start_pc=0x3025 -> new start_pc=0x3901 -DEBUG azoth_core::cfg_ir: Reindexed block 843: old start_pc=0x3037 -> new start_pc=0x3913 -DEBUG azoth_core::cfg_ir: Reindexed block 844: old start_pc=0x304e -> new start_pc=0x392a -DEBUG azoth_core::cfg_ir: Reindexed block 845: old start_pc=0x3060 -> new start_pc=0x393c -DEBUG azoth_core::cfg_ir: Reindexed block 846: old start_pc=0x3077 -> new start_pc=0x3953 -DEBUG azoth_core::cfg_ir: Reindexed block 847: old start_pc=0x3089 -> new start_pc=0x3965 -DEBUG azoth_core::cfg_ir: Reindexed block 848: old start_pc=0x30a0 -> new start_pc=0x397c -DEBUG azoth_core::cfg_ir: Reindexed block 849: old start_pc=0x30b2 -> new start_pc=0x398e -DEBUG azoth_core::cfg_ir: Reindexed block 850: old start_pc=0x30c9 -> new start_pc=0x39a5 -DEBUG azoth_core::cfg_ir: Remapped runtime bounds: 0x2ef-0x30db -> 0x0-0x39b7 -DEBUG azoth_transform::obfuscator: PC reindexing complete: 6749 mappings -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=0 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=1 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=2 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=2 start_pc=0x0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x0 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=3 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=4 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=4 start_pc=0x11 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x11 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=5 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=5 start_pc=0x22 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x22 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=6 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=6 start_pc=0x2d in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2d -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=7 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=7 start_pc=0x38 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x38 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=8 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=8 start_pc=0x43 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x43 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=9 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=9 start_pc=0x4e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x4e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=10 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=10 start_pc=0x59 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x59 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=11 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=11 start_pc=0x64 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x64 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=12 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=12 start_pc=0x6f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x6f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=13 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=13 start_pc=0x7a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x7a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=14 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=14 start_pc=0x85 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x85 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=15 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=15 start_pc=0x90 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x90 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=16 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=16 start_pc=0x9b in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x9b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=17 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=17 start_pc=0xa6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xa6 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=18 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=18 start_pc=0xb1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xb1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=19 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=19 start_pc=0xbc in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xbc -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=20 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=20 start_pc=0xc7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xc7 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=21 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=21 start_pc=0xd2 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xd2 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=22 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=22 start_pc=0xdd in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xdd -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=23 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=24 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=24 start_pc=0xea in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xea -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=25 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=25 start_pc=0xef in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xef -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=26 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=26 start_pc=0xf4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xf4 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=27 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=27 start_pc=0xf9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xf9 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=28 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=28 start_pc=0xfe in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xfe -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=29 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=29 start_pc=0x103 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x103 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=30 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=30 start_pc=0x108 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x108 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=31 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=31 start_pc=0x10d in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x10d -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=32 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=32 start_pc=0x112 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x112 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=33 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=33 start_pc=0x117 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x117 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=34 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=34 start_pc=0x11c in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x11c -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=35 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=35 start_pc=0x121 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x121 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=36 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=36 start_pc=0x126 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x126 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=37 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=37 start_pc=0x12b in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x12b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=38 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=38 start_pc=0x130 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x130 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=39 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=39 start_pc=0x135 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x135 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=40 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=40 start_pc=0x13a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x13a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=41 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=41 start_pc=0x13f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x13f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=42 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=42 start_pc=0x144 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x144 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=43 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=43 start_pc=0x14a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x14a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=44 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=44 start_pc=0x155 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x155 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=45 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=46 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=47 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=47 start_pc=0x198 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x198 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=48 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=48 start_pc=0x19e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x19e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=49 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=50 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=50 start_pc=0x1c0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1c0 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=51 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=51 start_pc=0x1c6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1c6 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=52 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=53 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=53 start_pc=0x1fa in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1fa -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=54 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=54 start_pc=0x200 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x200 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=55 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=56 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=56 start_pc=0x21c in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x21c -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=57 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=57 start_pc=0x222 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x222 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=58 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=59 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=59 start_pc=0x239 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x239 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=60 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=60 start_pc=0x23f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x23f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=61 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=62 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=62 start_pc=0x25e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x25e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=63 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=63 start_pc=0x267 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x267 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=64 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=64 start_pc=0x299 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x299 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=65 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=65 start_pc=0x2a1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=66 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=66 start_pc=0x2a9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a9 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=67 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=68 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=69 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=69 start_pc=0x2d6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2d6 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=70 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=71 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=71 start_pc=0x30b in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x30b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=72 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=72 start_pc=0x341 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x341 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=73 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=74 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=74 start_pc=0x346 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x346 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=75 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=75 start_pc=0x355 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x355 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=76 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=76 start_pc=0x35f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x35f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=77 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=78 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=78 start_pc=0x369 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x369 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=79 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=79 start_pc=0x370 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x370 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=80 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=80 start_pc=0x375 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x375 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=81 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=81 start_pc=0x37b in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x37b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=82 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=83 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=83 start_pc=0x391 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x391 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=84 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=84 start_pc=0x397 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x397 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=85 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=86 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=86 start_pc=0x3ae in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3ae -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=87 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=87 start_pc=0x3b4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3b4 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=88 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=88 start_pc=0x3bf in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3bf -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=89 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=90 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=90 start_pc=0x401 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x401 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=91 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=91 start_pc=0x407 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x407 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=92 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=93 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=93 start_pc=0x445 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x445 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=94 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=94 start_pc=0x44b in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x44b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=95 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=96 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=96 start_pc=0x462 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x462 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=97 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=97 start_pc=0x468 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x468 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=98 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=99 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=99 start_pc=0x493 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x493 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=100 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=101 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=102 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=102 start_pc=0x4a2 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x4a2 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=103 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=104 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=104 start_pc=0x4b6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x4b6 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=105 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=105 start_pc=0x4be in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x4be -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=106 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=106 start_pc=0x4cb in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x4cb -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=107 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=107 start_pc=0x4d1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x4d1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=108 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=108 start_pc=0x4e0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x4e0 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=109 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=109 start_pc=0x4e5 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x4e5 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=110 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=110 start_pc=0x541 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x541 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=111 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=111 start_pc=0x549 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x549 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=112 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=113 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=114 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=114 start_pc=0x572 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x572 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=115 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=115 start_pc=0x581 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x581 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=116 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=116 start_pc=0x58a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x58a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=117 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=117 start_pc=0x58f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x58f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=118 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=118 start_pc=0x59b in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x59b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=119 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=120 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=120 start_pc=0x5b3 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x5b3 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=121 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=121 start_pc=0x5bb in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x5bb -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=122 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=122 start_pc=0x5c1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x5c1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=123 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=123 start_pc=0x5cb in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x5cb -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=124 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=124 start_pc=0x5d1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x5d1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=125 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=125 start_pc=0x5dd in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x5dd -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=126 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=127 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=127 start_pc=0x632 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x632 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=128 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=128 start_pc=0x637 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x637 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=129 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=129 start_pc=0x642 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x642 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=130 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=131 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=132 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=132 start_pc=0x65a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x65a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=133 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=134 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=134 start_pc=0x69b in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x69b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=135 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=135 start_pc=0x6d1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x6d1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=136 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=137 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=137 start_pc=0x6e9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x6e9 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=138 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=138 start_pc=0x6f8 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x6f8 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=139 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=139 start_pc=0x701 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x701 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=140 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=140 start_pc=0x706 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x706 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=141 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=141 start_pc=0x70c in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x70c -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=142 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=142 start_pc=0x717 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x717 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=143 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=144 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=144 start_pc=0x72a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x72a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=145 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=145 start_pc=0x730 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x730 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=146 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=147 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=147 start_pc=0x747 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x747 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=148 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=148 start_pc=0x74d in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x74d -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=149 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=150 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=150 start_pc=0x781 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x781 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=151 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=151 start_pc=0x787 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x787 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=152 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=152 start_pc=0x793 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x793 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=153 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=153 start_pc=0x7a5 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x7a5 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=154 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=155 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=155 start_pc=0x7e0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x7e0 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=156 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=156 start_pc=0x7fa in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x7fa -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=157 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=157 start_pc=0x803 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x803 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=158 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=158 start_pc=0x80f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x80f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=159 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=159 start_pc=0x81c in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x81c -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=160 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=160 start_pc=0x844 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x844 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=161 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=161 start_pc=0x854 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x854 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=162 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=162 start_pc=0x861 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x861 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=163 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=163 start_pc=0x868 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x868 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=164 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=164 start_pc=0x874 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x874 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=165 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=165 start_pc=0x881 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x881 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=166 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=166 start_pc=0x887 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x887 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=167 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=167 start_pc=0x88d in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x88d -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=168 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=168 start_pc=0x89a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x89a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=169 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=169 start_pc=0x8a0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x8a0 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=170 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=170 start_pc=0x8b6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x8b6 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=171 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=171 start_pc=0x8ca in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x8ca -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=172 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=172 start_pc=0x8d4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x8d4 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=173 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=173 start_pc=0x8dc in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x8dc -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=174 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=174 start_pc=0x8e1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x8e1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=175 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=175 start_pc=0x8e6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x8e6 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=176 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=176 start_pc=0x958 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x958 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=177 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=177 start_pc=0x95d in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x95d -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=178 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=178 start_pc=0x96e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x96e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=179 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=180 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=181 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=182 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=183 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=184 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=184 start_pc=0x9ea in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x9ea -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=185 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=185 start_pc=0x9fe in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x9fe -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=186 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=187 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=187 start_pc=0xa03 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xa03 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=188 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=188 start_pc=0xa0f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xa0f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=189 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=189 start_pc=0xa16 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xa16 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=190 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=190 start_pc=0xa1c in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xa1c -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=191 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=192 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=192 start_pc=0xa3b in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xa3b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=193 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=193 start_pc=0xa41 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xa41 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=194 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=195 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=195 start_pc=0xa58 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xa58 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=196 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=197 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=198 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=198 start_pc=0xaa4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xaa4 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=199 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=200 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=201 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=201 start_pc=0xb1f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xb1f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=202 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=203 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=204 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=205 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=205 start_pc=0xccb in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xccb -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=206 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=207 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=207 start_pc=0xcda in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xcda -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=208 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=208 start_pc=0xcdf in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xcdf -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=209 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=210 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=210 start_pc=0xced in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xced -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=211 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=212 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=212 start_pc=0xcfb in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xcfb -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=213 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=214 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=214 start_pc=0xd08 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xd08 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=215 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=216 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=217 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=218 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=218 start_pc=0xd67 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xd67 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=219 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=220 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=220 start_pc=0xd89 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xd89 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=221 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=221 start_pc=0xd8e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xd8e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=222 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=222 start_pc=0xd9a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xd9a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=223 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=224 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=225 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=225 start_pc=0xdb1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xdb1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=226 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=227 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=228 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=228 start_pc=0xdf6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xdf6 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=229 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=230 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=231 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=231 start_pc=0xe9f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xe9f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=232 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=233 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=234 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=234 start_pc=0xfe7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0xfe7 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=235 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=236 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=237 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=237 start_pc=0x1077 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1077 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=238 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=239 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=240 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=240 start_pc=0x10c3 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x10c3 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=241 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=242 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=243 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=243 start_pc=0x1172 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1172 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=244 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=245 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=246 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=246 start_pc=0x118a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x118a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=247 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=248 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=249 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=249 start_pc=0x11d5 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x11d5 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=250 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=251 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=252 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=252 start_pc=0x1221 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1221 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=253 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=254 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=254 start_pc=0x1230 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1230 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=255 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=256 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=256 start_pc=0x123e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x123e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=257 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=258 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=258 start_pc=0x124b in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x124b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=259 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=260 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=261 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=261 start_pc=0x1310 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1310 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=262 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=263 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=264 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=264 start_pc=0x135c in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x135c -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=265 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=265 start_pc=0x136e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x136e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=266 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=266 start_pc=0x1381 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1381 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=267 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=268 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=268 start_pc=0x138f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x138f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=269 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=270 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=270 start_pc=0x13ab in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x13ab -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=271 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=271 start_pc=0x13b7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x13b7 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=272 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=272 start_pc=0x13c5 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x13c5 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=273 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=274 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=274 start_pc=0x13e1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x13e1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=275 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=276 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=277 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=277 start_pc=0x142d in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x142d -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=278 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=279 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=280 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=280 start_pc=0x1513 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1513 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=281 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=282 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=283 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=283 start_pc=0x1631 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1631 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=284 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=285 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=286 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=286 start_pc=0x1739 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1739 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=287 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=287 start_pc=0x1741 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1741 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=288 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=289 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=290 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=291 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=291 start_pc=0x1892 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1892 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=292 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=293 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=293 start_pc=0x189b in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x189b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=294 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=294 start_pc=0x18a0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x18a0 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=295 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=296 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=296 start_pc=0x18ac in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x18ac -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=297 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=298 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=299 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=299 start_pc=0x199e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x199e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=300 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=301 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=301 start_pc=0x19b1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x19b1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=302 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=303 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=303 start_pc=0x19c4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x19c4 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=304 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=305 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=305 start_pc=0x19d7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x19d7 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=306 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=307 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=307 start_pc=0x19ea in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x19ea -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=308 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=309 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=309 start_pc=0x19fb in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x19fb -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=310 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=311 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=311 start_pc=0x1a08 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1a08 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=312 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=313 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=313 start_pc=0x1a19 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1a19 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=314 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=315 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=315 start_pc=0x1a48 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1a48 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=316 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=316 start_pc=0x1a50 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1a50 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=317 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=317 start_pc=0x1a6b in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1a6b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=318 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=318 start_pc=0x1a72 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1a72 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=319 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=320 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=320 start_pc=0x1a95 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1a95 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=321 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=321 start_pc=0x1a9a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1a9a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=322 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=322 start_pc=0x1a9f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1a9f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=323 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=324 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=325 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=325 start_pc=0x1aa9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1aa9 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=326 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=326 start_pc=0x1ab2 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ab2 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=327 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=328 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=328 start_pc=0x1ac2 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ac2 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=329 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=329 start_pc=0x1acc in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1acc -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=330 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=331 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=331 start_pc=0x1af2 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1af2 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=332 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=333 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=333 start_pc=0x1b00 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1b00 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=334 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=334 start_pc=0x1b0e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1b0e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=335 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=335 start_pc=0x1b15 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1b15 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=336 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=336 start_pc=0x1b1e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1b1e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=337 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=338 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=339 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=339 start_pc=0x1c2d in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1c2d -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=340 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=340 start_pc=0x1c4f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1c4f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=341 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=341 start_pc=0x1c6a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1c6a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=342 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=342 start_pc=0x1c71 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1c71 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=343 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=344 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=344 start_pc=0x1c90 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1c90 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=345 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=345 start_pc=0x1c99 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1c99 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=346 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=346 start_pc=0x1cbb in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1cbb -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=347 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=347 start_pc=0x1cc2 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1cc2 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=348 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=349 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=349 start_pc=0x1ccc in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ccc -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=350 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=350 start_pc=0x1cda in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1cda -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=351 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=351 start_pc=0x1ce1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ce1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=352 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=352 start_pc=0x1ce9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ce9 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=353 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=353 start_pc=0x1cff in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1cff -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=354 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=354 start_pc=0x1d07 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1d07 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=355 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=356 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=356 start_pc=0x1d10 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1d10 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=357 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=358 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=359 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=359 start_pc=0x1d8d in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1d8d -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=360 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=361 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=362 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=362 start_pc=0x1e91 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1e91 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=363 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=363 start_pc=0x1ea4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ea4 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=364 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=364 start_pc=0x1ea9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ea9 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=365 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=365 start_pc=0x1ec1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ec1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=366 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=366 start_pc=0x1ec9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ec9 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=367 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=367 start_pc=0x1edf in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1edf -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=368 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=368 start_pc=0x1ee6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ee6 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=369 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=370 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=371 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=371 start_pc=0x1f08 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f08 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=372 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=372 start_pc=0x1f11 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f11 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=373 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=373 start_pc=0x1f2a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f2a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=374 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=374 start_pc=0x1f31 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f31 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=375 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=375 start_pc=0x1f48 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f48 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=376 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=376 start_pc=0x1f4e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f4e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=377 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=378 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=379 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=379 start_pc=0x1f6f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f6f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=380 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=380 start_pc=0x1f77 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f77 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=381 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=381 start_pc=0x1f82 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f82 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=382 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=382 start_pc=0x1f91 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f91 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=383 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=383 start_pc=0x1f99 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1f99 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=384 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=384 start_pc=0x1fa4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1fa4 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=385 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=385 start_pc=0x1faa in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1faa -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=386 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=386 start_pc=0x1fb8 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1fb8 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=387 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=387 start_pc=0x1fc3 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1fc3 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=388 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=388 start_pc=0x1fce in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1fce -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=389 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=389 start_pc=0x1fd5 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1fd5 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=390 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=390 start_pc=0x1fde in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1fde -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=391 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=391 start_pc=0x1ff3 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ff3 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=392 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=392 start_pc=0x1ffa in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x1ffa -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=393 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=394 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=395 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=395 start_pc=0x2082 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2082 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=396 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=396 start_pc=0x208f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x208f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=397 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=397 start_pc=0x20a0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x20a0 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=398 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=398 start_pc=0x20af in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x20af -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=399 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=399 start_pc=0x20bb in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x20bb -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=400 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=400 start_pc=0x20c8 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x20c8 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=401 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=401 start_pc=0x20dd in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x20dd -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=402 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=402 start_pc=0x20e3 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x20e3 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=403 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=403 start_pc=0x20f0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x20f0 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=404 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=405 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=405 start_pc=0x2105 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2105 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=406 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=406 start_pc=0x210d in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x210d -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=407 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=407 start_pc=0x2120 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2120 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=408 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=409 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=409 start_pc=0x2134 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2134 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=410 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=410 start_pc=0x214d in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x214d -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=411 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=411 start_pc=0x2154 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2154 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=412 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=412 start_pc=0x215e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x215e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=413 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=413 start_pc=0x216a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x216a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=414 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=414 start_pc=0x217e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x217e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=415 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=415 start_pc=0x2184 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2184 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=416 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=417 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=417 start_pc=0x2198 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2198 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=418 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=418 start_pc=0x21a0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x21a0 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=419 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=420 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=420 start_pc=0x21c2 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x21c2 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=421 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=421 start_pc=0x21db in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x21db -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=422 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=422 start_pc=0x21e5 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x21e5 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=423 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=424 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=424 start_pc=0x2207 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2207 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=425 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=426 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=426 start_pc=0x2229 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2229 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=427 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=427 start_pc=0x2233 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2233 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=428 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=428 start_pc=0x2240 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2240 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=429 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=430 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=430 start_pc=0x225b in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x225b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=431 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=431 start_pc=0x2266 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2266 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=432 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=432 start_pc=0x2277 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2277 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=433 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=433 start_pc=0x2286 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2286 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=434 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=434 start_pc=0x2291 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2291 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=435 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=436 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=436 start_pc=0x22b1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x22b1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=437 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=437 start_pc=0x22c2 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x22c2 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=438 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=438 start_pc=0x22ce in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x22ce -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=439 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=440 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=440 start_pc=0x22db in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x22db -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=441 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=441 start_pc=0x22e3 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x22e3 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=442 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=442 start_pc=0x22ef in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x22ef -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=443 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=443 start_pc=0x2305 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2305 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=444 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=444 start_pc=0x230c in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x230c -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=445 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=445 start_pc=0x2318 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2318 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=446 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=446 start_pc=0x231f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x231f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=447 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=447 start_pc=0x2328 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2328 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=448 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=449 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=449 start_pc=0x2338 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2338 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=450 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=450 start_pc=0x2340 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2340 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=451 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=452 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=452 start_pc=0x234c in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x234c -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=453 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=453 start_pc=0x2354 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2354 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=454 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=454 start_pc=0x2364 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2364 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=455 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=455 start_pc=0x237e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x237e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=456 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=456 start_pc=0x238a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x238a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=457 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=457 start_pc=0x2391 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2391 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=458 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=458 start_pc=0x23b1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x23b1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=459 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=459 start_pc=0x23b8 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x23b8 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=460 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=461 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=461 start_pc=0x2481 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2481 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=462 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=463 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=464 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=464 start_pc=0x251e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x251e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=465 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=465 start_pc=0x2542 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2542 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=466 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=466 start_pc=0x254a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x254a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=467 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=467 start_pc=0x2565 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2565 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=468 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=468 start_pc=0x256c in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x256c -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=469 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=469 start_pc=0x2584 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2584 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=470 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=471 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=472 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=472 start_pc=0x2590 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2590 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=473 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=474 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=474 start_pc=0x25a2 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x25a2 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=475 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=475 start_pc=0x25b4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x25b4 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=476 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=476 start_pc=0x25b9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x25b9 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=477 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=477 start_pc=0x25c0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x25c0 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=478 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=478 start_pc=0x25ce in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x25ce -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=479 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=480 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=480 start_pc=0x25ee in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x25ee -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=481 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=481 start_pc=0x25f4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x25f4 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=482 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=482 start_pc=0x260c in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x260c -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=483 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=483 start_pc=0x2613 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2613 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=484 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=484 start_pc=0x261d in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x261d -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=485 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=485 start_pc=0x2626 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2626 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=486 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=486 start_pc=0x262f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x262f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=487 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=487 start_pc=0x2637 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2637 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=488 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=489 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=489 start_pc=0x263f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x263f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=490 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=491 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=492 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=492 start_pc=0x265f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x265f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=493 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=493 start_pc=0x266d in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x266d -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=494 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=494 start_pc=0x2678 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2678 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=495 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=495 start_pc=0x2680 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2680 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=496 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=496 start_pc=0x2686 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2686 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=497 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=498 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=498 start_pc=0x2698 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2698 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=499 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=499 start_pc=0x26b1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x26b1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=500 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=500 start_pc=0x26b6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x26b6 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=501 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=501 start_pc=0x26c0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x26c0 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=502 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=503 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=504 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=504 start_pc=0x2710 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2710 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=505 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=506 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=507 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=507 start_pc=0x275c in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x275c -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=508 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=509 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=510 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=510 start_pc=0x279f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x279f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=511 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=511 start_pc=0x27ca in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x27ca -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=512 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=512 start_pc=0x27d2 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x27d2 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=513 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=513 start_pc=0x27e7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x27e7 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=514 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=514 start_pc=0x27ee in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x27ee -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=515 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=516 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=516 start_pc=0x280d in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x280d -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=517 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=517 start_pc=0x2818 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2818 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=518 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=518 start_pc=0x2826 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2826 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=519 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=519 start_pc=0x283b in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x283b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=520 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=520 start_pc=0x2841 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2841 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=521 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=521 start_pc=0x284e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x284e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=522 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=522 start_pc=0x2854 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2854 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=523 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=523 start_pc=0x2860 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2860 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=524 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=524 start_pc=0x2870 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2870 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=525 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=525 start_pc=0x287f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x287f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=526 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=526 start_pc=0x2889 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2889 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=527 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=527 start_pc=0x2898 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2898 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=528 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=528 start_pc=0x28a4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x28a4 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=529 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=530 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=530 start_pc=0x28b1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x28b1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=531 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=531 start_pc=0x28b9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x28b9 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=532 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=532 start_pc=0x28c4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x28c4 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=533 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=533 start_pc=0x28da in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x28da -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=534 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=534 start_pc=0x28e0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x28e0 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=535 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=535 start_pc=0x28ec in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x28ec -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=536 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=536 start_pc=0x28f3 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x28f3 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=537 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=537 start_pc=0x28fc in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x28fc -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=538 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=539 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=539 start_pc=0x290b in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x290b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=540 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=540 start_pc=0x2913 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2913 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=541 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=542 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=542 start_pc=0x291f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x291f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=543 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=543 start_pc=0x2927 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2927 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=544 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=544 start_pc=0x2936 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2936 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=545 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=545 start_pc=0x2950 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2950 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=546 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=546 start_pc=0x295c in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x295c -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=547 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=547 start_pc=0x2963 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2963 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=548 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=548 start_pc=0x2983 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2983 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=549 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=549 start_pc=0x2989 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2989 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=550 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=550 start_pc=0x2991 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2991 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=551 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=551 start_pc=0x299d in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x299d -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=552 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=553 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=553 start_pc=0x29aa in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x29aa -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=554 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=555 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=555 start_pc=0x29b8 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x29b8 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=556 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=556 start_pc=0x29cb in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x29cb -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=557 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=557 start_pc=0x29d7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x29d7 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=558 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=559 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=559 start_pc=0x29e1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x29e1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=560 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=560 start_pc=0x29eb in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x29eb -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=561 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=561 start_pc=0x29f4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x29f4 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=562 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=562 start_pc=0x29fe in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x29fe -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=563 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=563 start_pc=0x2a07 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a07 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=564 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=565 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=565 start_pc=0x2a14 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a14 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=566 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=567 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=567 start_pc=0x2a2a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a2a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=568 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=568 start_pc=0x2a38 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a38 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=569 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=569 start_pc=0x2a4e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a4e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=570 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=570 start_pc=0x2a57 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a57 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=571 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=571 start_pc=0x2a60 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a60 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=572 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=572 start_pc=0x2a6b in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a6b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=573 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=573 start_pc=0x2a75 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a75 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=574 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=575 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=575 start_pc=0x2a8a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a8a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=576 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=576 start_pc=0x2a96 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a96 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=577 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=577 start_pc=0x2a9e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2a9e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=578 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=578 start_pc=0x2aa4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2aa4 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=579 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=579 start_pc=0x2ab1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2ab1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=580 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=580 start_pc=0x2ab7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2ab7 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=581 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=581 start_pc=0x2acd in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2acd -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=582 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=582 start_pc=0x2ad5 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2ad5 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=583 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=584 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=584 start_pc=0x2ae7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2ae7 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=585 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=585 start_pc=0x2af1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2af1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=586 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=586 start_pc=0x2af9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2af9 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=587 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=587 start_pc=0x2b0a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2b0a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=588 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=588 start_pc=0x2b0f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2b0f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=589 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=589 start_pc=0x2b1b in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2b1b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=590 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=591 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=591 start_pc=0x2b34 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2b34 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=592 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=593 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=593 start_pc=0x2b43 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2b43 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=594 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=594 start_pc=0x2b4a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2b4a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=595 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=596 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=597 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=597 start_pc=0x2b70 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2b70 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=598 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=598 start_pc=0x2b7e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2b7e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=599 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=600 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=600 start_pc=0x2b9a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2b9a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=601 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=601 start_pc=0x2ba0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2ba0 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=602 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=603 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=604 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=604 start_pc=0x2bb4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2bb4 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=605 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=605 start_pc=0x2bbf in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2bbf -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=606 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=606 start_pc=0x2bc9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2bc9 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=607 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=607 start_pc=0x2bd3 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2bd3 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=608 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=608 start_pc=0x2bdf in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2bdf -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=609 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=609 start_pc=0x2bea in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2bea -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=610 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=611 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=611 start_pc=0x2bff in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2bff -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=612 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=612 start_pc=0x2c13 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2c13 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=613 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=613 start_pc=0x2c1f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2c1f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=614 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=615 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=615 start_pc=0x2c31 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2c31 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=616 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=616 start_pc=0x2c3a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2c3a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=617 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=617 start_pc=0x2c43 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2c43 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=618 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=619 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=620 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=620 start_pc=0x2c6b in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2c6b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=621 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=621 start_pc=0x2c7c in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2c7c -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=622 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=622 start_pc=0x2c85 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2c85 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=623 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=623 start_pc=0x2c93 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2c93 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=624 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=624 start_pc=0x2ca8 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2ca8 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=625 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=625 start_pc=0x2caf in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2caf -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=626 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=627 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=627 start_pc=0x2cb9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2cb9 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=628 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=629 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=629 start_pc=0x2ccb in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2ccb -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=630 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=630 start_pc=0x2ce1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2ce1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=631 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=631 start_pc=0x2ced in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2ced -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=632 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=633 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=633 start_pc=0x2d60 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2d60 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=634 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=635 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=636 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=636 start_pc=0x2da1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2da1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=637 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=638 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=639 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=639 start_pc=0x2e99 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2e99 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=640 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=641 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=642 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=642 start_pc=0x2f52 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2f52 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=643 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=644 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=645 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=645 start_pc=0x2f95 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2f95 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=646 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=647 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=648 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=648 start_pc=0x2fe1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x2fe1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=649 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=649 start_pc=0x305b in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x305b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=650 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=650 start_pc=0x3063 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3063 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=651 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=651 start_pc=0x306a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x306a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=652 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=652 start_pc=0x3071 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3071 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=653 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=653 start_pc=0x308e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x308e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=654 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=654 start_pc=0x3096 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3096 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=655 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=655 start_pc=0x309c in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x309c -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=656 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=656 start_pc=0x30a3 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x30a3 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=657 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=657 start_pc=0x30aa in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x30aa -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=658 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=659 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=659 start_pc=0x30bd in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x30bd -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=660 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=660 start_pc=0x30d0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x30d0 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=661 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=661 start_pc=0x30d7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x30d7 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=662 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=662 start_pc=0x30dd in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x30dd -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=663 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=664 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=664 start_pc=0x30f0 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x30f0 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=665 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=665 start_pc=0x30fa in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x30fa -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=666 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=666 start_pc=0x3112 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3112 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=667 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=667 start_pc=0x311b in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x311b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=668 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=669 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=669 start_pc=0x312f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x312f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=670 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=670 start_pc=0x3139 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3139 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=671 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=671 start_pc=0x3146 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3146 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=672 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=672 start_pc=0x3156 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3156 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=673 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=674 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=674 start_pc=0x316d in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x316d -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=675 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=675 start_pc=0x3177 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3177 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=676 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=676 start_pc=0x3188 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3188 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=677 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=677 start_pc=0x3192 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3192 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=678 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=679 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=679 start_pc=0x31a5 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x31a5 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=680 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=680 start_pc=0x31ad in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x31ad -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=681 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=682 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=682 start_pc=0x31cb in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x31cb -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=683 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=683 start_pc=0x31e4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x31e4 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=684 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=684 start_pc=0x31ea in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x31ea -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=685 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=685 start_pc=0x31f4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x31f4 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=686 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=686 start_pc=0x31fd in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x31fd -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=687 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=687 start_pc=0x320d in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x320d -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=688 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=689 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=689 start_pc=0x3220 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3220 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=690 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=690 start_pc=0x3228 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3228 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=691 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=692 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=692 start_pc=0x3246 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3246 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=693 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=693 start_pc=0x325f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x325f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=694 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=694 start_pc=0x3269 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3269 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=695 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=695 start_pc=0x3272 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3272 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=696 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=696 start_pc=0x3280 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3280 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=697 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=697 start_pc=0x328a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x328a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=698 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=698 start_pc=0x3299 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3299 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=699 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=699 start_pc=0x329e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x329e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=700 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=700 start_pc=0x32a3 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x32a3 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=701 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=702 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=702 start_pc=0x32bc in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x32bc -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=703 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=703 start_pc=0x32c6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x32c6 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=704 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=705 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=706 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=706 start_pc=0x32f7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x32f7 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=707 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=707 start_pc=0x3306 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3306 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=708 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=708 start_pc=0x3310 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3310 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=709 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=710 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=710 start_pc=0x3337 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3337 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=711 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=711 start_pc=0x3343 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3343 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=712 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=713 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=713 start_pc=0x334f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x334f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=714 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=714 start_pc=0x3360 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3360 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=715 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=716 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=716 start_pc=0x3368 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3368 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=717 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=717 start_pc=0x3372 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3372 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=718 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=718 start_pc=0x338a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x338a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=719 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=719 start_pc=0x3399 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3399 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=720 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=720 start_pc=0x339e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x339e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=721 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=721 start_pc=0x33b4 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x33b4 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=722 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=722 start_pc=0x33c6 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x33c6 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=723 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=724 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=724 start_pc=0x33cf in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x33cf -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=725 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=725 start_pc=0x33dd in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x33dd -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=726 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=726 start_pc=0x33e7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x33e7 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=727 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=728 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=728 start_pc=0x33ee in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x33ee -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=729 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=729 start_pc=0x33f8 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x33f8 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=730 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=731 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=731 start_pc=0x340a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x340a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=732 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=732 start_pc=0x340f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x340f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=733 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=734 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=734 start_pc=0x342d in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x342d -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=735 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=735 start_pc=0x3433 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3433 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=736 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=736 start_pc=0x3448 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3448 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=737 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=737 start_pc=0x3450 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3450 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=738 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=739 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=739 start_pc=0x345f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x345f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=740 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=740 start_pc=0x3477 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3477 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=741 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=742 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=743 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=743 start_pc=0x348d in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x348d -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=744 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=744 start_pc=0x34ab in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x34ab -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=745 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=746 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=747 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=747 start_pc=0x34ff in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x34ff -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=748 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=748 start_pc=0x350a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x350a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=749 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=749 start_pc=0x351b in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x351b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=750 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=750 start_pc=0x352a in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x352a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=751 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=751 start_pc=0x3535 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3535 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=752 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=752 start_pc=0x3546 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3546 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=753 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=753 start_pc=0x3552 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3552 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=754 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=755 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=755 start_pc=0x355f in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x355f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=756 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=756 start_pc=0x3567 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3567 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=757 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=757 start_pc=0x3573 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3573 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=758 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=758 start_pc=0x3589 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3589 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=759 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=759 start_pc=0x3595 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3595 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=760 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=760 start_pc=0x359c in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x359c -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=761 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=761 start_pc=0x35a5 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x35a5 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=762 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=763 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=763 start_pc=0x35b5 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x35b5 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=764 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=764 start_pc=0x35bd in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x35bd -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=765 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=766 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=766 start_pc=0x35c9 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x35c9 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=767 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=767 start_pc=0x35d1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x35d1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=768 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=768 start_pc=0x35e1 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x35e1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=769 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=769 start_pc=0x35fb in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x35fb -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=770 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=770 start_pc=0x3607 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3607 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=771 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=771 start_pc=0x360e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x360e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=772 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=772 start_pc=0x362e in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x362e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=773 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=774 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=775 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=776 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=776 start_pc=0x36ac in_runtime=true pattern_count=2 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36ac pattern_old_value=0x2adf pattern_old_pc=0x2dce -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36ac pattern_old_pc=0x2dce new_pc=0x36aa value_to_store=0x36aa -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36ac pattern_old_value=0x12b pattern_old_pc=0x41a -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36ac pattern_old_pc=0x41a new_pc=0x12b value_to_store=0x12b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=777 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=777 start_pc=0x36ba in_runtime=true pattern_count=1 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36ba pattern_old_value=0x2ae1 pattern_old_pc=0x2dd0 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36ba pattern_old_pc=0x2dd0 new_pc=0x36ac value_to_store=0x36ac -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=778 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=779 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=779 start_pc=0x36c1 in_runtime=true pattern_count=2 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36c1 pattern_old_value=0x2af4 pattern_old_pc=0x2de3 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36c1 pattern_old_pc=0x2de3 new_pc=0x36bf value_to_store=0x36bf -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36c1 pattern_old_value=0xef pattern_old_pc=0x3de -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36c1 pattern_old_pc=0x3de new_pc=0xef value_to_store=0xef -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=780 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=780 start_pc=0x36ce in_runtime=true pattern_count=1 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36ce pattern_old_value=0x2af6 pattern_old_pc=0x2de5 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36ce pattern_old_pc=0x2de5 new_pc=0x36c1 value_to_store=0x36c1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=781 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=782 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=782 start_pc=0x36d5 in_runtime=true pattern_count=2 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36d5 pattern_old_value=0x2b08 pattern_old_pc=0x2df7 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36d5 pattern_old_pc=0x2df7 new_pc=0x36d3 value_to_store=0x36d3 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36d5 pattern_old_value=0x10d pattern_old_pc=0x3fc -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36d5 pattern_old_pc=0x3fc new_pc=0x10d value_to_store=0x10d -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=783 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=783 start_pc=0x36e3 in_runtime=true pattern_count=1 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36e3 pattern_old_value=0x2b0a pattern_old_pc=0x2df9 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36e3 pattern_old_pc=0x2df9 new_pc=0x36d5 value_to_store=0x36d5 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=784 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=785 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=785 start_pc=0x36ea in_runtime=true pattern_count=2 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36ea pattern_old_value=0x2b1d pattern_old_pc=0x2e0c -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36ea pattern_old_pc=0x2e0c new_pc=0x36e8 value_to_store=0x36e8 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36ea pattern_old_value=0xf4 pattern_old_pc=0x3e3 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36ea pattern_old_pc=0x3e3 new_pc=0xf4 value_to_store=0xf4 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=786 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=786 start_pc=0x36f7 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x36f7 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=787 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=788 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=788 start_pc=0x36fe in_runtime=true pattern_count=2 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36fe pattern_old_value=0x2b31 pattern_old_pc=0x2e20 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36fe pattern_old_pc=0x2e20 new_pc=0x36fc value_to_store=0x36fc -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x36fe pattern_old_value=0xf9 pattern_old_pc=0x3e8 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x36fe pattern_old_pc=0x3e8 new_pc=0xf9 value_to_store=0xf9 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=789 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=789 start_pc=0x370b in_runtime=true pattern_count=1 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x370b pattern_old_value=0x2b33 pattern_old_pc=0x2e22 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x370b pattern_old_pc=0x2e22 new_pc=0x36fe value_to_store=0x36fe -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=790 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=791 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=791 start_pc=0x3712 in_runtime=true pattern_count=2 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3712 pattern_old_value=0x2b45 pattern_old_pc=0x2e34 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3712 pattern_old_pc=0x2e34 new_pc=0x3710 value_to_store=0x3710 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3712 pattern_old_value=0x144 pattern_old_pc=0x433 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3712 pattern_old_pc=0x433 new_pc=0x144 value_to_store=0x144 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=792 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=792 start_pc=0x3720 in_runtime=true pattern_count=1 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3720 pattern_old_value=0x2b47 pattern_old_pc=0x2e36 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3720 pattern_old_pc=0x2e36 new_pc=0x3712 value_to_store=0x3712 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=793 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=794 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=794 start_pc=0x3727 in_runtime=true pattern_count=2 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3727 pattern_old_value=0x2b5a pattern_old_pc=0x2e49 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3727 pattern_old_pc=0x2e49 new_pc=0x3725 value_to_store=0x3725 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3727 pattern_old_value=0x108 pattern_old_pc=0x3f7 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3727 pattern_old_pc=0x3f7 new_pc=0x108 value_to_store=0x108 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=795 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=795 start_pc=0x3735 in_runtime=true pattern_count=1 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3735 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=796 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=797 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=797 start_pc=0x373c in_runtime=true pattern_count=2 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x373c pattern_old_value=0x2b6f pattern_old_pc=0x2e5e -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x373c pattern_old_pc=0x2e5e new_pc=0x373a value_to_store=0x373a -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x373c pattern_old_value=0x13a pattern_old_pc=0x429 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x373c pattern_old_pc=0x429 new_pc=0x13a value_to_store=0x13a -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=798 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=798 start_pc=0x374a in_runtime=true pattern_count=1 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x374a pattern_old_value=0x2b71 pattern_old_pc=0x2e60 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x374a pattern_old_pc=0x2e60 new_pc=0x373c value_to_store=0x373c -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=799 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=800 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=800 start_pc=0x3751 in_runtime=true pattern_count=2 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3751 pattern_old_value=0x2b84 pattern_old_pc=0x2e73 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3751 pattern_old_pc=0x2e73 new_pc=0x374f value_to_store=0x374f -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3751 pattern_old_value=0x13f pattern_old_pc=0x42e -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3751 pattern_old_pc=0x42e new_pc=0x13f value_to_store=0x13f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=801 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=801 start_pc=0x375f in_runtime=true pattern_count=1 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x375f pattern_old_value=0x2b86 pattern_old_pc=0x2e75 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x375f pattern_old_pc=0x2e75 new_pc=0x3751 value_to_store=0x3751 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=802 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=803 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=803 start_pc=0x3766 in_runtime=true pattern_count=2 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3766 pattern_old_value=0x2b99 pattern_old_pc=0x2e88 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3766 pattern_old_pc=0x2e88 new_pc=0x3764 value_to_store=0x3764 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3766 pattern_old_value=0x130 pattern_old_pc=0x41f -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3766 pattern_old_pc=0x41f new_pc=0x130 value_to_store=0x130 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=804 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=804 start_pc=0x3774 in_runtime=true pattern_count=1 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3774 pattern_old_value=0x2b9b pattern_old_pc=0x2e8a -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3774 pattern_old_pc=0x2e8a new_pc=0x3766 value_to_store=0x3766 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=805 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=806 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=806 start_pc=0x377b in_runtime=true pattern_count=2 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x377b pattern_old_value=0x2bae pattern_old_pc=0x2e9d -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x377b pattern_old_pc=0x2e9d new_pc=0x3779 value_to_store=0x3779 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x377b pattern_old_value=0x126 pattern_old_pc=0x415 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x377b pattern_old_pc=0x415 new_pc=0x126 value_to_store=0x126 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=807 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=807 start_pc=0x3789 in_runtime=true pattern_count=1 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3789 pattern_old_value=0x2bb0 pattern_old_pc=0x2e9f -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3789 pattern_old_pc=0x2e9f new_pc=0x377b value_to_store=0x377b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=808 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=809 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=809 start_pc=0x3790 in_runtime=true pattern_count=2 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3790 pattern_old_value=0x2bc3 pattern_old_pc=0x2eb2 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3790 pattern_old_pc=0x2eb2 new_pc=0x378e value_to_store=0x378e -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3790 pattern_old_value=0x121 pattern_old_pc=0x410 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3790 pattern_old_pc=0x410 new_pc=0x121 value_to_store=0x121 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=810 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=810 start_pc=0x379e in_runtime=true pattern_count=1 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x379e pattern_old_value=0x2bc5 pattern_old_pc=0x2eb4 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x379e pattern_old_pc=0x2eb4 new_pc=0x3790 value_to_store=0x3790 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=811 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=812 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=812 start_pc=0x37a5 in_runtime=true pattern_count=2 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37a5 pattern_old_value=0x2bd8 pattern_old_pc=0x2ec7 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37a5 pattern_old_pc=0x2ec7 new_pc=0x37a3 value_to_store=0x37a3 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37a5 pattern_old_value=0x103 pattern_old_pc=0x3f2 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37a5 pattern_old_pc=0x3f2 new_pc=0x103 value_to_store=0x103 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=813 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=813 start_pc=0x37b3 in_runtime=true pattern_count=1 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37b3 pattern_old_value=0x2bda pattern_old_pc=0x2ec9 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37b3 pattern_old_pc=0x2ec9 new_pc=0x37a5 value_to_store=0x37a5 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=814 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=815 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=815 start_pc=0x37ba in_runtime=true pattern_count=2 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37ba pattern_old_value=0x2bed pattern_old_pc=0x2edc -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37ba pattern_old_pc=0x2edc new_pc=0x37b8 value_to_store=0x37b8 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37ba pattern_old_value=0xfe pattern_old_pc=0x3ed -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37ba pattern_old_pc=0x3ed new_pc=0xfe value_to_store=0xfe -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=816 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=816 start_pc=0x37c7 in_runtime=true pattern_count=1 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37c7 pattern_old_value=0x2bef pattern_old_pc=0x2ede -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37c7 pattern_old_pc=0x2ede new_pc=0x37ba value_to_store=0x37ba -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=817 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=818 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=818 start_pc=0x37ce in_runtime=true pattern_count=2 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37ce pattern_old_value=0x2c01 pattern_old_pc=0x2ef0 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37ce pattern_old_pc=0x2ef0 new_pc=0x37cc value_to_store=0x37cc -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37ce pattern_old_value=0x117 pattern_old_pc=0x406 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37ce pattern_old_pc=0x406 new_pc=0x117 value_to_store=0x117 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=819 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=819 start_pc=0x37dc in_runtime=true pattern_count=1 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37dc pattern_old_value=0x2c03 pattern_old_pc=0x2ef2 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37dc pattern_old_pc=0x2ef2 new_pc=0x37ce value_to_store=0x37ce -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=820 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=821 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=821 start_pc=0x37e3 in_runtime=true pattern_count=2 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37e3 pattern_old_value=0x2c16 pattern_old_pc=0x2f05 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37e3 pattern_old_pc=0x2f05 new_pc=0x37e1 value_to_store=0x37e1 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37e3 pattern_old_value=0x135 pattern_old_pc=0x424 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37e3 pattern_old_pc=0x424 new_pc=0x135 value_to_store=0x135 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=822 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=822 start_pc=0x37f1 in_runtime=true pattern_count=1 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37f1 pattern_old_value=0x2c18 pattern_old_pc=0x2f07 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37f1 pattern_old_pc=0x2f07 new_pc=0x37e3 value_to_store=0x37e3 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=823 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=824 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=824 start_pc=0x37f8 in_runtime=true pattern_count=2 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37f8 pattern_old_value=0x2c2b pattern_old_pc=0x2f1a -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37f8 pattern_old_pc=0x2f1a new_pc=0x37f6 value_to_store=0x37f6 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x37f8 pattern_old_value=0x11c pattern_old_pc=0x40b -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x37f8 pattern_old_pc=0x40b new_pc=0x11c value_to_store=0x11c -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=825 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=825 start_pc=0x3806 in_runtime=true pattern_count=1 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3806 pattern_old_value=0x2c2d pattern_old_pc=0x2f1c -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3806 pattern_old_pc=0x2f1c new_pc=0x37f8 value_to_store=0x37f8 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=826 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=827 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=827 start_pc=0x380d in_runtime=true pattern_count=2 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x380d pattern_old_value=0x2c40 pattern_old_pc=0x2f2f -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x380d pattern_old_pc=0x2f2f new_pc=0x380b value_to_store=0x380b -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x380d pattern_old_value=0x112 pattern_old_pc=0x401 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x380d pattern_old_pc=0x401 new_pc=0x112 value_to_store=0x112 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=828 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=828 start_pc=0x381b in_runtime=true pattern_count=1 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x381b pattern_old_value=0x2c42 pattern_old_pc=0x2f31 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x381b pattern_old_pc=0x2f31 new_pc=0x380d value_to_store=0x380d -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=829 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=830 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=830 start_pc=0x3822 in_runtime=true pattern_count=2 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3822 pattern_old_value=0x2c55 pattern_old_pc=0x2f44 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3822 pattern_old_pc=0x2f44 new_pc=0x3820 value_to_store=0x3820 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3822 pattern_old_value=0xea pattern_old_pc=0x3d9 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3822 pattern_old_pc=0x3d9 new_pc=0xea value_to_store=0xea -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=831 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=831 start_pc=0x382f in_runtime=true pattern_count=1 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x382f pattern_old_value=0x2c57 pattern_old_pc=0x2f46 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x382f pattern_old_pc=0x2f46 new_pc=0x3822 value_to_store=0x3822 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=832 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=832 start_pc=0x3834 in_runtime=true pattern_count=3 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3834 pattern_old_value=0x2b55 pattern_old_pc=0x2e44 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3834 pattern_old_pc=0x2e44 new_pc=0x3720 value_to_store=0x3720 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3834 pattern_old_value=0x2b45 pattern_old_pc=0x2e34 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3834 pattern_old_pc=0x2e34 new_pc=0x3710 value_to_store=0x3710 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3834 pattern_old_value=0x2b55 pattern_old_pc=0x2e44 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3834 pattern_old_pc=0x2e44 new_pc=0x3720 value_to_store=0x3720 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=833 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=833 start_pc=0x3846 in_runtime=true pattern_count=3 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3846 pattern_old_value=0x2c8d pattern_old_pc=0x2f7c -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: mapped PC has no block; falling back start_pc=0x3846 pattern_old_pc=0x2f7c mapped_pc=0x3858 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: using control fallback start_pc=0x3846 pattern_old_pc=0x2f7c fallback_value=0x2b94 absolute=0x2b94 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3846 pattern_old_pc=0x2f7c new_pc=0x2b94 value_to_store=0x2b94 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3846 pattern_old_value=0x2b84 pattern_old_pc=0x2e73 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3846 pattern_old_pc=0x2e73 new_pc=0x374f value_to_store=0x374f -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3846 pattern_old_value=0x2b94 pattern_old_pc=0x2e83 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3846 pattern_old_pc=0x2e83 new_pc=0x375f value_to_store=0x375f -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=834 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=834 start_pc=0x385d in_runtime=true pattern_count=3 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x385d pattern_old_value=0x2b7f pattern_old_pc=0x2e6e -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x385d pattern_old_pc=0x2e6e new_pc=0x374a value_to_store=0x374a -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x385d pattern_old_value=0x2b6f pattern_old_pc=0x2e5e -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x385d pattern_old_pc=0x2e5e new_pc=0x373a value_to_store=0x373a -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x385d -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=835 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=835 start_pc=0x386f in_runtime=true pattern_count=3 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x386f pattern_old_value=0x2cb6 pattern_old_pc=0x2fa5 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: mapped PC has no block; falling back start_pc=0x386f pattern_old_pc=0x2fa5 mapped_pc=0x3881 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: using control fallback start_pc=0x386f pattern_old_pc=0x2fa5 fallback_value=0x2c26 absolute=0x2c26 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x386f pattern_old_pc=0x2fa5 new_pc=0x2c26 value_to_store=0x2c26 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x386f pattern_old_value=0x2c16 pattern_old_pc=0x2f05 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x386f pattern_old_pc=0x2f05 new_pc=0x37e1 value_to_store=0x37e1 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x386f pattern_old_value=0x2c26 pattern_old_pc=0x2f15 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x386f pattern_old_pc=0x2f15 new_pc=0x37f1 value_to_store=0x37f1 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=836 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=836 start_pc=0x3886 in_runtime=true pattern_count=3 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3886 pattern_old_value=0x2ba9 pattern_old_pc=0x2e98 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3886 pattern_old_pc=0x2e98 new_pc=0x3774 value_to_store=0x3774 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3886 pattern_old_value=0x2b99 pattern_old_pc=0x2e88 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3886 pattern_old_pc=0x2e88 new_pc=0x3764 value_to_store=0x3764 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3886 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=837 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=837 start_pc=0x3898 in_runtime=true pattern_count=3 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3898 pattern_old_value=0x2cdf pattern_old_pc=0x2fce -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: mapped PC has no block; falling back start_pc=0x3898 pattern_old_pc=0x2fce mapped_pc=0x38aa -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: using control fallback start_pc=0x3898 pattern_old_pc=0x2fce fallback_value=0x2aef absolute=0x2aef -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3898 pattern_old_pc=0x2fce new_pc=0x2aef value_to_store=0x2aef -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3898 pattern_old_value=0x2adf pattern_old_pc=0x2dce -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3898 pattern_old_pc=0x2dce new_pc=0x36aa value_to_store=0x36aa -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3898 pattern_old_value=0x2aef pattern_old_pc=0x2dde -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3898 pattern_old_pc=0x2dde new_pc=0x36ba value_to_store=0x36ba -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=838 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=838 start_pc=0x38af in_runtime=true pattern_count=3 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38af pattern_old_value=0x2bbe pattern_old_pc=0x2ead -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38af pattern_old_pc=0x2ead new_pc=0x3789 value_to_store=0x3789 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38af pattern_old_value=0x2bae pattern_old_pc=0x2e9d -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38af pattern_old_pc=0x2e9d new_pc=0x3779 value_to_store=0x3779 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38af pattern_old_value=0x2bbe pattern_old_pc=0x2ead -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38af pattern_old_pc=0x2ead new_pc=0x3789 value_to_store=0x3789 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=839 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=839 start_pc=0x38c1 in_runtime=true pattern_count=3 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38c1 pattern_old_value=0x2d08 pattern_old_pc=0x2ff7 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: mapped PC has no block; falling back start_pc=0x38c1 pattern_old_pc=0x2ff7 mapped_pc=0x38d3 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: using control fallback start_pc=0x38c1 pattern_old_pc=0x2ff7 fallback_value=0x2bd3 absolute=0x2bd3 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38c1 pattern_old_pc=0x2ff7 new_pc=0x2bd3 value_to_store=0x2bd3 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38c1 pattern_old_value=0x2bc3 pattern_old_pc=0x2eb2 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38c1 pattern_old_pc=0x2eb2 new_pc=0x378e value_to_store=0x378e -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38c1 pattern_old_value=0x2bd3 pattern_old_pc=0x2ec2 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38c1 pattern_old_pc=0x2ec2 new_pc=0x379e value_to_store=0x379e -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=840 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=840 start_pc=0x38d8 in_runtime=true pattern_count=3 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38d8 pattern_old_value=0x2c3b pattern_old_pc=0x2f2a -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38d8 pattern_old_pc=0x2f2a new_pc=0x3806 value_to_store=0x3806 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38d8 pattern_old_value=0x2c2b pattern_old_pc=0x2f1a -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38d8 pattern_old_pc=0x2f1a new_pc=0x37f6 value_to_store=0x37f6 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38d8 pattern_old_value=0x2c3b pattern_old_pc=0x2f2a -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38d8 pattern_old_pc=0x2f2a new_pc=0x3806 value_to_store=0x3806 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=841 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=841 start_pc=0x38ea in_runtime=true pattern_count=3 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38ea pattern_old_value=0x2d31 pattern_old_pc=0x3020 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: mapped PC has no block; falling back start_pc=0x38ea pattern_old_pc=0x3020 mapped_pc=0x38fc -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: using control fallback start_pc=0x38ea pattern_old_pc=0x3020 fallback_value=0x2c11 absolute=0x2c11 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38ea pattern_old_pc=0x3020 new_pc=0x2c11 value_to_store=0x2c11 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38ea pattern_old_value=0x2c01 pattern_old_pc=0x2ef0 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38ea pattern_old_pc=0x2ef0 new_pc=0x37cc value_to_store=0x37cc -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x38ea pattern_old_value=0x2c11 pattern_old_pc=0x2f00 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x38ea pattern_old_pc=0x2f00 new_pc=0x37dc value_to_store=0x37dc -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=842 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=842 start_pc=0x3901 in_runtime=true pattern_count=3 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3901 pattern_old_value=0x2c50 pattern_old_pc=0x2f3f -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3901 pattern_old_pc=0x2f3f new_pc=0x381b value_to_store=0x381b -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3901 pattern_old_value=0x2c40 pattern_old_pc=0x2f2f -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3901 pattern_old_pc=0x2f2f new_pc=0x380b value_to_store=0x380b -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3901 pattern_old_value=0x2c50 pattern_old_pc=0x2f3f -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3901 pattern_old_pc=0x2f3f new_pc=0x381b value_to_store=0x381b -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=843 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=843 start_pc=0x3913 in_runtime=true pattern_count=3 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3913 pattern_old_value=0x2d5a pattern_old_pc=0x3049 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: mapped PC has no block; falling back start_pc=0x3913 pattern_old_pc=0x3049 mapped_pc=0x3925 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: using control fallback start_pc=0x3913 pattern_old_pc=0x3049 fallback_value=0x33c6 absolute=0x33c6 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3913 pattern_old_pc=0x3049 new_pc=0x33c6 value_to_store=0x33c6 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3913 pattern_old_value=0x2b08 pattern_old_pc=0x2df7 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3913 pattern_old_pc=0x2df7 new_pc=0x36d3 value_to_store=0x36d3 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3913 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=844 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=844 start_pc=0x392a in_runtime=true pattern_count=3 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x392a pattern_old_value=0x2b6a pattern_old_pc=0x2e59 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x392a pattern_old_pc=0x2e59 new_pc=0x3735 value_to_store=0x3735 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x392a pattern_old_value=0x2b5a pattern_old_pc=0x2e49 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x392a pattern_old_pc=0x2e49 new_pc=0x3725 value_to_store=0x3725 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x392a pattern_old_value=0x2b6a pattern_old_pc=0x2e59 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x392a pattern_old_pc=0x2e59 new_pc=0x3735 value_to_store=0x3735 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=845 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=845 start_pc=0x393c in_runtime=true pattern_count=3 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x393c pattern_old_value=0x2d83 pattern_old_pc=0x3072 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: mapped PC has no block; falling back start_pc=0x393c pattern_old_pc=0x3072 mapped_pc=0x394e -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: using control fallback start_pc=0x393c pattern_old_pc=0x3072 fallback_value=0x2be8 absolute=0x2be8 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x393c pattern_old_pc=0x3072 new_pc=0x2be8 value_to_store=0x2be8 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x393c pattern_old_value=0x2bd8 pattern_old_pc=0x2ec7 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x393c pattern_old_pc=0x2ec7 new_pc=0x37a3 value_to_store=0x37a3 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x393c pattern_old_value=0x2be8 pattern_old_pc=0x2ed7 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x393c pattern_old_pc=0x2ed7 new_pc=0x37b3 value_to_store=0x37b3 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=846 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=846 start_pc=0x3953 in_runtime=true pattern_count=3 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3953 pattern_old_value=0x2bfc pattern_old_pc=0x2eeb -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3953 pattern_old_pc=0x2eeb new_pc=0x37c7 value_to_store=0x37c7 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3953 pattern_old_value=0x2bed pattern_old_pc=0x2edc -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3953 pattern_old_pc=0x2edc new_pc=0x37b8 value_to_store=0x37b8 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3953 pattern_old_value=0x2bfc pattern_old_pc=0x2eeb -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3953 pattern_old_pc=0x2eeb new_pc=0x37c7 value_to_store=0x37c7 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=847 has_symbolic_target=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=847 start_pc=0x3965 in_runtime=true pattern_count=3 skip_symbolic_terminal=true -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3965 pattern_old_value=0x2dac pattern_old_pc=0x309b -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: mapped PC has no block; falling back start_pc=0x3965 pattern_old_pc=0x309b mapped_pc=0x3977 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: using control fallback start_pc=0x3965 pattern_old_pc=0x309b fallback_value=0x33ee absolute=0x33ee -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3965 pattern_old_pc=0x309b new_pc=0x33ee value_to_store=0x33ee -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x3965 pattern_old_value=0x2b31 pattern_old_pc=0x2e20 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x3965 pattern_old_pc=0x2e20 new_pc=0x36fc value_to_store=0x36fc -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: skipping terminal symbolic pattern start_pc=0x3965 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=848 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=848 start_pc=0x397c in_runtime=true pattern_count=3 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x397c pattern_old_value=0x2b2c pattern_old_pc=0x2e1b -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x397c pattern_old_pc=0x2e1b new_pc=0x36f7 value_to_store=0x36f7 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x397c pattern_old_value=0x2b1d pattern_old_pc=0x2e0c -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x397c pattern_old_pc=0x2e0c new_pc=0x36e8 value_to_store=0x36e8 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x397c pattern_old_value=0x2b2c pattern_old_pc=0x2e1b -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x397c pattern_old_pc=0x2e1b new_pc=0x36f7 value_to_store=0x36f7 -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=849 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=849 start_pc=0x398e in_runtime=true pattern_count=3 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x398e pattern_old_value=0x2dd5 pattern_old_pc=0x30c4 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: mapped PC has no block; falling back start_pc=0x398e pattern_old_pc=0x30c4 mapped_pc=0x39a0 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: using control fallback start_pc=0x398e pattern_old_pc=0x30c4 fallback_value=0x2b03 absolute=0x2b03 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x398e pattern_old_pc=0x30c4 new_pc=0x2b03 value_to_store=0x2b03 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x398e pattern_old_value=0x2af4 pattern_old_pc=0x2de3 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x398e pattern_old_pc=0x2de3 new_pc=0x36bf value_to_store=0x36bf -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x398e pattern_old_value=0x2b03 pattern_old_pc=0x2df2 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x398e pattern_old_pc=0x2df2 new_pc=0x36ce value_to_store=0x36ce -DEBUG azoth_core::cfg_ir: patch_jump_immediates: evaluating block node=850 has_symbolic_target=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: visiting block node=850 start_pc=0x39a5 in_runtime=true pattern_count=3 skip_symbolic_terminal=false -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x39a5 pattern_old_value=0x2c64 pattern_old_pc=0x2f53 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x39a5 pattern_old_pc=0x2f53 new_pc=0x382f value_to_store=0x382f -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x39a5 pattern_old_value=0x2c55 pattern_old_pc=0x2f44 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x39a5 pattern_old_pc=0x2f44 new_pc=0x3820 value_to_store=0x3820 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: resolved old PC start_pc=0x39a5 pattern_old_value=0x2c64 pattern_old_pc=0x2f53 -DEBUG azoth_core::cfg_ir: patch_legacy_immediates: rewriting pattern start_pc=0x39a5 pattern_old_pc=0x2f53 new_pc=0x382f value_to_store=0x382f -DEBUG azoth_transform::obfuscator: Patched jump immediates after PC reindexing -DEBUG azoth_transform::obfuscator: Re-applying 19 dispatcher jump target patches with remapped controller PCs -DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x046f7da2 old_controller_pc=0x2f58 new_controller_pc=0x3834 old_pc=0x030d new_pc=0x001e controller_rel=0x3834 -DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x1aa7c0ec old_controller_pc=0x2f6a new_controller_pc=0x3846 old_pc=0x0318 new_pc=0x0029 controller_rel=0x3846 -DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x2feef2ec old_controller_pc=0x2f81 new_controller_pc=0x385d old_pc=0x0323 new_pc=0x0034 controller_rel=0x385d -DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x308657d7 old_controller_pc=0x2f93 new_controller_pc=0x386f old_pc=0x032e new_pc=0x003f controller_rel=0x386f -DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x33ee5f35 old_controller_pc=0x2faa new_controller_pc=0x3886 old_pc=0x0339 new_pc=0x004a controller_rel=0x3886 -DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x3ccfd60b old_controller_pc=0x2fbc new_controller_pc=0x3898 old_pc=0x0344 new_pc=0x0055 controller_rel=0x3898 -DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x5a4fd645 old_controller_pc=0x2fd3 new_controller_pc=0x38af old_pc=0x034f new_pc=0x0060 controller_rel=0x38af -DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x80f323a7 old_controller_pc=0x2fe5 new_controller_pc=0x38c1 old_pc=0x035a new_pc=0x006b controller_rel=0x38c1 -DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x81972d00 old_controller_pc=0x2ffc new_controller_pc=0x38d8 old_pc=0x0365 new_pc=0x0076 controller_rel=0x38d8 -DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x8677ab23 old_controller_pc=0x300e new_controller_pc=0x38ea old_pc=0x0370 new_pc=0x0081 controller_rel=0x38ea -DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x8bd03d0a old_controller_pc=0x3025 new_controller_pc=0x3901 old_pc=0x037b new_pc=0x008c controller_rel=0x3901 -DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0x9940686e old_controller_pc=0x3037 new_controller_pc=0x3913 old_pc=0x0386 new_pc=0x0097 controller_rel=0x3913 -DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0xa65e2cfd old_controller_pc=0x304e new_controller_pc=0x392a old_pc=0x0391 new_pc=0x00a2 controller_rel=0x392a -DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0xcb766a56 old_controller_pc=0x3060 new_controller_pc=0x393c old_pc=0x039c new_pc=0x00ad controller_rel=0x393c -DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0xd415b3f9 old_controller_pc=0x3077 new_controller_pc=0x3953 old_pc=0x03a7 new_pc=0x00b8 controller_rel=0x3953 -DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0xd4899a62 old_controller_pc=0x3089 new_controller_pc=0x3965 old_pc=0x03b2 new_pc=0x00c3 controller_rel=0x3965 -DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0xede7f6a3 old_controller_pc=0x30a0 new_controller_pc=0x397c old_pc=0x03bd new_pc=0x00ce controller_rel=0x397c -DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0xf3a504f2 old_controller_pc=0x30b2 new_controller_pc=0x398e old_pc=0x03c8 new_pc=0x00d9 controller_rel=0x398e -DEBUG azoth_transform::function_dispatcher: reapply_dispatcher_patches: updating dispatcher PUSH instruction selector=0xfe03a460 old_controller_pc=0x30c9 new_controller_pc=0x39a5 old_pc=0x03d2 new_pc=0x00e3 controller_rel=0x39a5 -DEBUG azoth_transform::obfuscator: Dispatcher jump target patches re-applied successfully -DEBUG azoth_transform::obfuscator: Updated controller PC for 0x2feef2ec: 0x2f81 -> 0x385d -DEBUG azoth_transform::obfuscator: Updated controller PC for 0x80f323a7: 0x2fe5 -> 0x38c1 -DEBUG azoth_transform::obfuscator: Updated controller PC for 0x5a4fd645: 0x2fd3 -> 0x38af -DEBUG azoth_transform::obfuscator: Updated controller PC for 0x1aa7c0ec: 0x2f6a -> 0x3846 -DEBUG azoth_transform::obfuscator: Updated controller PC for 0x3ccfd60b: 0x2fbc -> 0x3898 -DEBUG azoth_transform::obfuscator: Updated controller PC for 0x81972d00: 0x2ffc -> 0x38d8 -DEBUG azoth_transform::obfuscator: Updated controller PC for 0x8677ab23: 0x300e -> 0x38ea -DEBUG azoth_transform::obfuscator: Updated controller PC for 0xd4899a62: 0x3089 -> 0x3965 -DEBUG azoth_transform::obfuscator: Updated controller PC for 0xf3a504f2: 0x30b2 -> 0x398e -DEBUG azoth_transform::obfuscator: Updated controller PC for 0x308657d7: 0x2f93 -> 0x386f -DEBUG azoth_transform::obfuscator: Updated controller PC for 0x8bd03d0a: 0x3025 -> 0x3901 -DEBUG azoth_transform::obfuscator: Updated controller PC for 0xd415b3f9: 0x3077 -> 0x3953 -DEBUG azoth_transform::obfuscator: Updated controller PC for 0xfe03a460: 0x30c9 -> 0x39a5 -DEBUG azoth_transform::obfuscator: Updated controller PC for 0x9940686e: 0x3037 -> 0x3913 -DEBUG azoth_transform::obfuscator: Updated controller PC for 0x33ee5f35: 0x2faa -> 0x3886 -DEBUG azoth_transform::obfuscator: Updated controller PC for 0x046f7da2: 0x2f58 -> 0x3834 -DEBUG azoth_transform::obfuscator: Updated controller PC for 0xcb766a56: 0x3060 -> 0x393c -DEBUG azoth_transform::obfuscator: Updated controller PC for 0xede7f6a3: 0x30a0 -> 0x397c -DEBUG azoth_transform::obfuscator: Updated controller PC for 0xa65e2cfd: 0x304e -> 0x392a -DEBUG azoth_transform::obfuscator: Re-applying 19 stub patches with remapped decoy PCs -DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(776): start_pc=0x36ac, first_instr_pc=0x36ac, instruction_count=8 -DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(776), push_width=2, new_decoy_pc=0x36ac, old_pc=0x2ddf, new_pc=0x36bb, decoy_rel=0x36ac -DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(779): start_pc=0x36c1, first_instr_pc=0x36c1, instruction_count=8 -DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(779), push_width=2, new_decoy_pc=0x36c1, old_pc=0x2df3, new_pc=0x36cf, decoy_rel=0x36c1 -DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(782): start_pc=0x36d5, first_instr_pc=0x36d5, instruction_count=8 -DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(782), push_width=2, new_decoy_pc=0x36d5, old_pc=0x2e08, new_pc=0x36e4, decoy_rel=0x36d5 -DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(785): start_pc=0x36ea, first_instr_pc=0x36ea, instruction_count=8 -DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(785), push_width=2, new_decoy_pc=0x36ea, old_pc=0x2e1c, new_pc=0x36f8, decoy_rel=0x36ea -DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(788): start_pc=0x36fe, first_instr_pc=0x36fe, instruction_count=8 -DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(788), push_width=2, new_decoy_pc=0x36fe, old_pc=0x2e30, new_pc=0x370c, decoy_rel=0x36fe -DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(791): start_pc=0x3712, first_instr_pc=0x3712, instruction_count=8 -DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(791), push_width=2, new_decoy_pc=0x3712, old_pc=0x2e45, new_pc=0x3721, decoy_rel=0x3712 -DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(794): start_pc=0x3727, first_instr_pc=0x3727, instruction_count=8 -DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(794), push_width=2, new_decoy_pc=0x3727, old_pc=0x2e5a, new_pc=0x3736, decoy_rel=0x3727 -DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(797): start_pc=0x373c, first_instr_pc=0x373c, instruction_count=8 -DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(797), push_width=2, new_decoy_pc=0x373c, old_pc=0x2e6f, new_pc=0x374b, decoy_rel=0x373c -DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(800): start_pc=0x3751, first_instr_pc=0x3751, instruction_count=8 -DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(800), push_width=2, new_decoy_pc=0x3751, old_pc=0x2e84, new_pc=0x3760, decoy_rel=0x3751 -DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(803): start_pc=0x3766, first_instr_pc=0x3766, instruction_count=8 -DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(803), push_width=2, new_decoy_pc=0x3766, old_pc=0x2e99, new_pc=0x3775, decoy_rel=0x3766 -DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(806): start_pc=0x377b, first_instr_pc=0x377b, instruction_count=8 -DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(806), push_width=2, new_decoy_pc=0x377b, old_pc=0x2eae, new_pc=0x378a, decoy_rel=0x377b -DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(809): start_pc=0x3790, first_instr_pc=0x3790, instruction_count=8 -DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(809), push_width=2, new_decoy_pc=0x3790, old_pc=0x2ec3, new_pc=0x379f, decoy_rel=0x3790 -DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(812): start_pc=0x37a5, first_instr_pc=0x37a5, instruction_count=8 -DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(812), push_width=2, new_decoy_pc=0x37a5, old_pc=0x2ed8, new_pc=0x37b4, decoy_rel=0x37a5 -DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(815): start_pc=0x37ba, first_instr_pc=0x37ba, instruction_count=8 -DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(815), push_width=2, new_decoy_pc=0x37ba, old_pc=0x2eec, new_pc=0x37c8, decoy_rel=0x37ba -DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(818): start_pc=0x37ce, first_instr_pc=0x37ce, instruction_count=8 -DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(818), push_width=2, new_decoy_pc=0x37ce, old_pc=0x2f01, new_pc=0x37dd, decoy_rel=0x37ce -DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(821): start_pc=0x37e3, first_instr_pc=0x37e3, instruction_count=8 -DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(821), push_width=2, new_decoy_pc=0x37e3, old_pc=0x2f16, new_pc=0x37f2, decoy_rel=0x37e3 -DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(824): start_pc=0x37f8, first_instr_pc=0x37f8, instruction_count=8 -DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(824), push_width=2, new_decoy_pc=0x37f8, old_pc=0x2f2b, new_pc=0x3807, decoy_rel=0x37f8 -DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(827): start_pc=0x380d, first_instr_pc=0x380d, instruction_count=8 -DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(827), push_width=2, new_decoy_pc=0x380d, old_pc=0x2f40, new_pc=0x381c, decoy_rel=0x380d -DEBUG azoth_transform::obfuscator: Decoy block NodeIndex(830): start_pc=0x3822, first_instr_pc=0x3822, instruction_count=8 -DEBUG azoth_transform::obfuscator: Reapplying stub patch: decoy_node=NodeIndex(830), push_width=2, new_decoy_pc=0x3822, old_pc=0x2f54, new_pc=0x3830, decoy_rel=0x3822 -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(777) instr pc=0x36ba op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(777) instr pc=0x36bb op=PUSH(2) imm=Some("36ac") -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(777) instr pc=0x36be op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(776) instr pc=0x36ac op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(776) instr pc=0x36ad op=PUSH(1) imm=Some("01") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(776) instr pc=0x36af op=PUSH(1) imm=Some("00") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(776) instr pc=0x36b1 op=EQ imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(776) instr pc=0x36b2 op=PUSH(2) imm=Some("36aa") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(776) instr pc=0x36b5 op=JUMPI imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(776) instr pc=0x36b6 op=PUSH(2) imm=Some("012b") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(776) instr pc=0x36b9 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(780) instr pc=0x36ce op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(780) instr pc=0x36cf op=PUSH(2) imm=Some("36c1") -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(780) instr pc=0x36d2 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(779) instr pc=0x36c1 op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(779) instr pc=0x36c2 op=PUSH(1) imm=Some("01") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(779) instr pc=0x36c4 op=PUSH(1) imm=Some("00") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(779) instr pc=0x36c6 op=EQ imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(779) instr pc=0x36c7 op=PUSH(2) imm=Some("36bf") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(779) instr pc=0x36ca op=JUMPI imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(779) instr pc=0x36cb op=PUSH(1) imm=Some("ef") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(779) instr pc=0x36cd op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(783) instr pc=0x36e3 op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(783) instr pc=0x36e4 op=PUSH(2) imm=Some("36d5") -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(783) instr pc=0x36e7 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(782) instr pc=0x36d5 op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(782) instr pc=0x36d6 op=PUSH(1) imm=Some("01") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(782) instr pc=0x36d8 op=PUSH(1) imm=Some("00") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(782) instr pc=0x36da op=EQ imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(782) instr pc=0x36db op=PUSH(2) imm=Some("36d3") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(782) instr pc=0x36de op=JUMPI imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(782) instr pc=0x36df op=PUSH(2) imm=Some("010d") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(782) instr pc=0x36e2 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(786) instr pc=0x36f7 op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(786) instr pc=0x36f8 op=PUSH(2) imm=Some("36ea") -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(786) instr pc=0x36fb op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(785) instr pc=0x36ea op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(785) instr pc=0x36eb op=PUSH(1) imm=Some("01") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(785) instr pc=0x36ed op=PUSH(1) imm=Some("00") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(785) instr pc=0x36ef op=EQ imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(785) instr pc=0x36f0 op=PUSH(2) imm=Some("36e8") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(785) instr pc=0x36f3 op=JUMPI imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(785) instr pc=0x36f4 op=PUSH(1) imm=Some("f4") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(785) instr pc=0x36f6 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(789) instr pc=0x370b op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(789) instr pc=0x370c op=PUSH(2) imm=Some("36fe") -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(789) instr pc=0x370f op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(788) instr pc=0x36fe op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(788) instr pc=0x36ff op=PUSH(1) imm=Some("01") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(788) instr pc=0x3701 op=PUSH(1) imm=Some("00") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(788) instr pc=0x3703 op=EQ imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(788) instr pc=0x3704 op=PUSH(2) imm=Some("36fc") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(788) instr pc=0x3707 op=JUMPI imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(788) instr pc=0x3708 op=PUSH(1) imm=Some("f9") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(788) instr pc=0x370a op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(792) instr pc=0x3720 op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(792) instr pc=0x3721 op=PUSH(2) imm=Some("3712") -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(792) instr pc=0x3724 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(791) instr pc=0x3712 op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(791) instr pc=0x3713 op=PUSH(1) imm=Some("01") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(791) instr pc=0x3715 op=PUSH(1) imm=Some("00") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(791) instr pc=0x3717 op=EQ imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(791) instr pc=0x3718 op=PUSH(2) imm=Some("3710") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(791) instr pc=0x371b op=JUMPI imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(791) instr pc=0x371c op=PUSH(2) imm=Some("0144") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(791) instr pc=0x371f op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(795) instr pc=0x3735 op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(795) instr pc=0x3736 op=PUSH(2) imm=Some("3727") -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(795) instr pc=0x3739 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(794) instr pc=0x3727 op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(794) instr pc=0x3728 op=PUSH(1) imm=Some("01") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(794) instr pc=0x372a op=PUSH(1) imm=Some("00") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(794) instr pc=0x372c op=EQ imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(794) instr pc=0x372d op=PUSH(2) imm=Some("3725") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(794) instr pc=0x3730 op=JUMPI imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(794) instr pc=0x3731 op=PUSH(2) imm=Some("0108") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(794) instr pc=0x3734 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(798) instr pc=0x374a op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(798) instr pc=0x374b op=PUSH(2) imm=Some("373c") -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(798) instr pc=0x374e op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(797) instr pc=0x373c op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(797) instr pc=0x373d op=PUSH(1) imm=Some("01") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(797) instr pc=0x373f op=PUSH(1) imm=Some("00") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(797) instr pc=0x3741 op=EQ imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(797) instr pc=0x3742 op=PUSH(2) imm=Some("373a") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(797) instr pc=0x3745 op=JUMPI imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(797) instr pc=0x3746 op=PUSH(2) imm=Some("013a") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(797) instr pc=0x3749 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(801) instr pc=0x375f op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(801) instr pc=0x3760 op=PUSH(2) imm=Some("3751") -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(801) instr pc=0x3763 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(800) instr pc=0x3751 op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(800) instr pc=0x3752 op=PUSH(1) imm=Some("01") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(800) instr pc=0x3754 op=PUSH(1) imm=Some("00") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(800) instr pc=0x3756 op=EQ imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(800) instr pc=0x3757 op=PUSH(2) imm=Some("374f") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(800) instr pc=0x375a op=JUMPI imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(800) instr pc=0x375b op=PUSH(2) imm=Some("013f") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(800) instr pc=0x375e op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(804) instr pc=0x3774 op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(804) instr pc=0x3775 op=PUSH(2) imm=Some("3766") -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(804) instr pc=0x3778 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(803) instr pc=0x3766 op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(803) instr pc=0x3767 op=PUSH(1) imm=Some("01") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(803) instr pc=0x3769 op=PUSH(1) imm=Some("00") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(803) instr pc=0x376b op=EQ imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(803) instr pc=0x376c op=PUSH(2) imm=Some("3764") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(803) instr pc=0x376f op=JUMPI imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(803) instr pc=0x3770 op=PUSH(2) imm=Some("0130") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(803) instr pc=0x3773 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(807) instr pc=0x3789 op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(807) instr pc=0x378a op=PUSH(2) imm=Some("377b") -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(807) instr pc=0x378d op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(806) instr pc=0x377b op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(806) instr pc=0x377c op=PUSH(1) imm=Some("01") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(806) instr pc=0x377e op=PUSH(1) imm=Some("00") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(806) instr pc=0x3780 op=EQ imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(806) instr pc=0x3781 op=PUSH(2) imm=Some("3779") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(806) instr pc=0x3784 op=JUMPI imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(806) instr pc=0x3785 op=PUSH(2) imm=Some("0126") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(806) instr pc=0x3788 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(810) instr pc=0x379e op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(810) instr pc=0x379f op=PUSH(2) imm=Some("3790") -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(810) instr pc=0x37a2 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(809) instr pc=0x3790 op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(809) instr pc=0x3791 op=PUSH(1) imm=Some("01") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(809) instr pc=0x3793 op=PUSH(1) imm=Some("00") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(809) instr pc=0x3795 op=EQ imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(809) instr pc=0x3796 op=PUSH(2) imm=Some("378e") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(809) instr pc=0x3799 op=JUMPI imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(809) instr pc=0x379a op=PUSH(2) imm=Some("0121") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(809) instr pc=0x379d op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(813) instr pc=0x37b3 op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(813) instr pc=0x37b4 op=PUSH(2) imm=Some("37a5") -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(813) instr pc=0x37b7 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(812) instr pc=0x37a5 op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(812) instr pc=0x37a6 op=PUSH(1) imm=Some("01") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(812) instr pc=0x37a8 op=PUSH(1) imm=Some("00") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(812) instr pc=0x37aa op=EQ imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(812) instr pc=0x37ab op=PUSH(2) imm=Some("37a3") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(812) instr pc=0x37ae op=JUMPI imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(812) instr pc=0x37af op=PUSH(2) imm=Some("0103") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(812) instr pc=0x37b2 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(816) instr pc=0x37c7 op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(816) instr pc=0x37c8 op=PUSH(2) imm=Some("37ba") -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(816) instr pc=0x37cb op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(815) instr pc=0x37ba op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(815) instr pc=0x37bb op=PUSH(1) imm=Some("01") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(815) instr pc=0x37bd op=PUSH(1) imm=Some("00") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(815) instr pc=0x37bf op=EQ imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(815) instr pc=0x37c0 op=PUSH(2) imm=Some("37b8") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(815) instr pc=0x37c3 op=JUMPI imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(815) instr pc=0x37c4 op=PUSH(1) imm=Some("fe") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(815) instr pc=0x37c6 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(819) instr pc=0x37dc op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(819) instr pc=0x37dd op=PUSH(2) imm=Some("37ce") -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(819) instr pc=0x37e0 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(818) instr pc=0x37ce op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(818) instr pc=0x37cf op=PUSH(1) imm=Some("01") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(818) instr pc=0x37d1 op=PUSH(1) imm=Some("00") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(818) instr pc=0x37d3 op=EQ imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(818) instr pc=0x37d4 op=PUSH(2) imm=Some("37cc") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(818) instr pc=0x37d7 op=JUMPI imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(818) instr pc=0x37d8 op=PUSH(2) imm=Some("0117") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(818) instr pc=0x37db op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(822) instr pc=0x37f1 op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(822) instr pc=0x37f2 op=PUSH(2) imm=Some("37e3") -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(822) instr pc=0x37f5 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(821) instr pc=0x37e3 op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(821) instr pc=0x37e4 op=PUSH(1) imm=Some("01") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(821) instr pc=0x37e6 op=PUSH(1) imm=Some("00") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(821) instr pc=0x37e8 op=EQ imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(821) instr pc=0x37e9 op=PUSH(2) imm=Some("37e1") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(821) instr pc=0x37ec op=JUMPI imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(821) instr pc=0x37ed op=PUSH(2) imm=Some("0135") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(821) instr pc=0x37f0 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(825) instr pc=0x3806 op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(825) instr pc=0x3807 op=PUSH(2) imm=Some("37f8") -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(825) instr pc=0x380a op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(824) instr pc=0x37f8 op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(824) instr pc=0x37f9 op=PUSH(1) imm=Some("01") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(824) instr pc=0x37fb op=PUSH(1) imm=Some("00") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(824) instr pc=0x37fd op=EQ imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(824) instr pc=0x37fe op=PUSH(2) imm=Some("37f6") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(824) instr pc=0x3801 op=JUMPI imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(824) instr pc=0x3802 op=PUSH(2) imm=Some("011c") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(824) instr pc=0x3805 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(828) instr pc=0x381b op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(828) instr pc=0x381c op=PUSH(2) imm=Some("380d") -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(828) instr pc=0x381f op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(827) instr pc=0x380d op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(827) instr pc=0x380e op=PUSH(1) imm=Some("01") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(827) instr pc=0x3810 op=PUSH(1) imm=Some("00") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(827) instr pc=0x3812 op=EQ imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(827) instr pc=0x3813 op=PUSH(2) imm=Some("380b") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(827) instr pc=0x3816 op=JUMPI imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(827) instr pc=0x3817 op=PUSH(2) imm=Some("0112") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(827) instr pc=0x381a op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(831) instr pc=0x382f op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(831) instr pc=0x3830 op=PUSH(2) imm=Some("3822") -DEBUG azoth_transform::obfuscator: Stub node NodeIndex(831) instr pc=0x3833 op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(830) instr pc=0x3822 op=JUMPDEST imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(830) instr pc=0x3823 op=PUSH(1) imm=Some("01") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(830) instr pc=0x3825 op=PUSH(1) imm=Some("00") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(830) instr pc=0x3827 op=EQ imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(830) instr pc=0x3828 op=PUSH(2) imm=Some("3820") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(830) instr pc=0x382b op=JUMPI imm=None -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(830) instr pc=0x382c op=PUSH(1) imm=Some("ea") -DEBUG azoth_transform::obfuscator: Decoy node NodeIndex(830) instr pc=0x382e op=JUMP imm=None -DEBUG azoth_transform::obfuscator: Stub patches re-applied successfully -DEBUG azoth_transform::obfuscator: Re-applying 19 decoy patches with remapped target PCs -DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(776), push_width=2, old_target_pc=0x041a, new_target_pc=0x012b, old_pc=0x2dda, new_pc=0x36b6, target_rel=0x012b -DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(779), push_width=1, old_target_pc=0x03de, new_target_pc=0x00ef, old_pc=0x2def, new_pc=0x36cb, target_rel=0x00ef -DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(782), push_width=2, old_target_pc=0x03fc, new_target_pc=0x010d, old_pc=0x2e03, new_pc=0x36df, target_rel=0x010d -DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(785), push_width=1, old_target_pc=0x03e3, new_target_pc=0x00f4, old_pc=0x2e18, new_pc=0x36f4, target_rel=0x00f4 -DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(788), push_width=1, old_target_pc=0x03e8, new_target_pc=0x00f9, old_pc=0x2e2c, new_pc=0x3708, target_rel=0x00f9 -DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(791), push_width=2, old_target_pc=0x0433, new_target_pc=0x0144, old_pc=0x2e40, new_pc=0x371c, target_rel=0x0144 -DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(794), push_width=2, old_target_pc=0x03f7, new_target_pc=0x0108, old_pc=0x2e55, new_pc=0x3731, target_rel=0x0108 -DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(797), push_width=2, old_target_pc=0x0429, new_target_pc=0x013a, old_pc=0x2e6a, new_pc=0x3746, target_rel=0x013a -DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(800), push_width=2, old_target_pc=0x042e, new_target_pc=0x013f, old_pc=0x2e7f, new_pc=0x375b, target_rel=0x013f -DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(803), push_width=2, old_target_pc=0x041f, new_target_pc=0x0130, old_pc=0x2e94, new_pc=0x3770, target_rel=0x0130 -DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(806), push_width=2, old_target_pc=0x0415, new_target_pc=0x0126, old_pc=0x2ea9, new_pc=0x3785, target_rel=0x0126 -DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(809), push_width=2, old_target_pc=0x0410, new_target_pc=0x0121, old_pc=0x2ebe, new_pc=0x379a, target_rel=0x0121 -DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(812), push_width=2, old_target_pc=0x03f2, new_target_pc=0x0103, old_pc=0x2ed3, new_pc=0x37af, target_rel=0x0103 -DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(815), push_width=1, old_target_pc=0x03ed, new_target_pc=0x00fe, old_pc=0x2ee8, new_pc=0x37c4, target_rel=0x00fe -DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(818), push_width=2, old_target_pc=0x0406, new_target_pc=0x0117, old_pc=0x2efc, new_pc=0x37d8, target_rel=0x0117 -DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(821), push_width=2, old_target_pc=0x0424, new_target_pc=0x0135, old_pc=0x2f11, new_pc=0x37ed, target_rel=0x0135 -DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(824), push_width=2, old_target_pc=0x040b, new_target_pc=0x011c, old_pc=0x2f26, new_pc=0x3802, target_rel=0x011c -DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(827), push_width=2, old_target_pc=0x0401, new_target_pc=0x0112, old_pc=0x2f3b, new_pc=0x3817, target_rel=0x0112 -DEBUG azoth_transform::obfuscator: Reapplying decoy patch: decoy_node=NodeIndex(830), push_width=1, old_target_pc=0x03d9, new_target_pc=0x00ea, old_pc=0x2f50, new_pc=0x382c, target_rel=0x00ea -DEBUG azoth_transform::obfuscator: Decoy patches re-applied successfully -DEBUG azoth_transform::obfuscator: Re-applying 57 controller patches with remapped jump targets -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e44 new_target_pc=0x3720 old_push_pc=0x2f5e new_push_pc=0x383a target_rel=0x3720 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e34 new_target_pc=0x3710 old_push_pc=0x2f62 new_push_pc=0x383e target_rel=0x3710 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e44 new_target_pc=0x3720 old_push_pc=0x2f66 new_push_pc=0x3842 target_rel=0x3720 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f7c new_target_pc=0x3858 old_push_pc=0x2f74 new_push_pc=0x3850 target_rel=0x3858 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e73 new_target_pc=0x374f old_push_pc=0x2f78 new_push_pc=0x3854 target_rel=0x374f -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e83 new_target_pc=0x375f old_push_pc=0x2f7d new_push_pc=0x3859 target_rel=0x375f -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e6e new_target_pc=0x374a old_push_pc=0x2f87 new_push_pc=0x3863 target_rel=0x374a -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e5e new_target_pc=0x373a old_push_pc=0x2f8b new_push_pc=0x3867 target_rel=0x373a -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e6e new_target_pc=0x374a old_push_pc=0x2f8f new_push_pc=0x386b target_rel=0x374a -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2fa5 new_target_pc=0x3881 old_push_pc=0x2f9d new_push_pc=0x3879 target_rel=0x3881 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f05 new_target_pc=0x37e1 old_push_pc=0x2fa1 new_push_pc=0x387d target_rel=0x37e1 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f15 new_target_pc=0x37f1 old_push_pc=0x2fa6 new_push_pc=0x3882 target_rel=0x37f1 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e98 new_target_pc=0x3774 old_push_pc=0x2fb0 new_push_pc=0x388c target_rel=0x3774 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e88 new_target_pc=0x3764 old_push_pc=0x2fb4 new_push_pc=0x3890 target_rel=0x3764 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e98 new_target_pc=0x3774 old_push_pc=0x2fb8 new_push_pc=0x3894 target_rel=0x3774 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2fce new_target_pc=0x38aa old_push_pc=0x2fc6 new_push_pc=0x38a2 target_rel=0x38aa -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2dce new_target_pc=0x36aa old_push_pc=0x2fca new_push_pc=0x38a6 target_rel=0x36aa -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2dde new_target_pc=0x36ba old_push_pc=0x2fcf new_push_pc=0x38ab target_rel=0x36ba -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2ead new_target_pc=0x3789 old_push_pc=0x2fd9 new_push_pc=0x38b5 target_rel=0x3789 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e9d new_target_pc=0x3779 old_push_pc=0x2fdd new_push_pc=0x38b9 target_rel=0x3779 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2ead new_target_pc=0x3789 old_push_pc=0x2fe1 new_push_pc=0x38bd target_rel=0x3789 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2ff7 new_target_pc=0x38d3 old_push_pc=0x2fef new_push_pc=0x38cb target_rel=0x38d3 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2eb2 new_target_pc=0x378e old_push_pc=0x2ff3 new_push_pc=0x38cf target_rel=0x378e -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2ec2 new_target_pc=0x379e old_push_pc=0x2ff8 new_push_pc=0x38d4 target_rel=0x379e -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f2a new_target_pc=0x3806 old_push_pc=0x3002 new_push_pc=0x38de target_rel=0x3806 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f1a new_target_pc=0x37f6 old_push_pc=0x3006 new_push_pc=0x38e2 target_rel=0x37f6 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f2a new_target_pc=0x3806 old_push_pc=0x300a new_push_pc=0x38e6 target_rel=0x3806 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x3020 new_target_pc=0x38fc old_push_pc=0x3018 new_push_pc=0x38f4 target_rel=0x38fc -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2ef0 new_target_pc=0x37cc old_push_pc=0x301c new_push_pc=0x38f8 target_rel=0x37cc -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f00 new_target_pc=0x37dc old_push_pc=0x3021 new_push_pc=0x38fd target_rel=0x37dc -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f3f new_target_pc=0x381b old_push_pc=0x302b new_push_pc=0x3907 target_rel=0x381b -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f2f new_target_pc=0x380b old_push_pc=0x302f new_push_pc=0x390b target_rel=0x380b -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f3f new_target_pc=0x381b old_push_pc=0x3033 new_push_pc=0x390f target_rel=0x381b -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x3049 new_target_pc=0x3925 old_push_pc=0x3041 new_push_pc=0x391d target_rel=0x3925 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2df7 new_target_pc=0x36d3 old_push_pc=0x3045 new_push_pc=0x3921 target_rel=0x36d3 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e07 new_target_pc=0x36e3 old_push_pc=0x304a new_push_pc=0x3926 target_rel=0x36e3 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e59 new_target_pc=0x3735 old_push_pc=0x3054 new_push_pc=0x3930 target_rel=0x3735 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e49 new_target_pc=0x3725 old_push_pc=0x3058 new_push_pc=0x3934 target_rel=0x3725 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e59 new_target_pc=0x3735 old_push_pc=0x305c new_push_pc=0x3938 target_rel=0x3735 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x3072 new_target_pc=0x394e old_push_pc=0x306a new_push_pc=0x3946 target_rel=0x394e -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2ec7 new_target_pc=0x37a3 old_push_pc=0x306e new_push_pc=0x394a target_rel=0x37a3 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2ed7 new_target_pc=0x37b3 old_push_pc=0x3073 new_push_pc=0x394f target_rel=0x37b3 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2eeb new_target_pc=0x37c7 old_push_pc=0x307d new_push_pc=0x3959 target_rel=0x37c7 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2edc new_target_pc=0x37b8 old_push_pc=0x3081 new_push_pc=0x395d target_rel=0x37b8 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2eeb new_target_pc=0x37c7 old_push_pc=0x3085 new_push_pc=0x3961 target_rel=0x37c7 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x309b new_target_pc=0x3977 old_push_pc=0x3093 new_push_pc=0x396f target_rel=0x3977 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e20 new_target_pc=0x36fc old_push_pc=0x3097 new_push_pc=0x3973 target_rel=0x36fc -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e2f new_target_pc=0x370b old_push_pc=0x309c new_push_pc=0x3978 target_rel=0x370b -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e1b new_target_pc=0x36f7 old_push_pc=0x30a6 new_push_pc=0x3982 target_rel=0x36f7 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e0c new_target_pc=0x36e8 old_push_pc=0x30aa new_push_pc=0x3986 target_rel=0x36e8 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2e1b new_target_pc=0x36f7 old_push_pc=0x30ae new_push_pc=0x398a target_rel=0x36f7 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x30c4 new_target_pc=0x39a0 old_push_pc=0x30bc new_push_pc=0x3998 target_rel=0x39a0 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2de3 new_target_pc=0x36bf old_push_pc=0x30c0 new_push_pc=0x399c target_rel=0x36bf -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2df2 new_target_pc=0x36ce old_push_pc=0x30c5 new_push_pc=0x39a1 target_rel=0x36ce -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f53 new_target_pc=0x382f old_push_pc=0x30cf new_push_pc=0x39ab target_rel=0x382f -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f44 new_target_pc=0x3820 old_push_pc=0x30d3 new_push_pc=0x39af target_rel=0x3820 -DEBUG azoth_transform::function_dispatcher: reapply_controller_patches: updating controller PUSH instruction old_target_pc=0x2f53 new_target_pc=0x382f old_push_pc=0x30d7 new_push_pc=0x39b3 target_rel=0x382f -DEBUG azoth_transform::obfuscator: Controller patches re-applied successfully -DEBUG azoth_transform::obfuscator: Extract: Controller 0x5a4fd645 at PC 0x38af: ["0x38af:JUMPDEST", "0x38b0:PUSH(2)", "0x38b3:SLOAD", "0x38b4:ISZERO", "0x38b5:PUSH(2)"] -DEBUG azoth_transform::obfuscator: Extract: Controller 0xf3a504f2 at PC 0x398e: ["0x398e:JUMPDEST", "0x398f:PUSH(1)", "0x3991:CALLDATALOAD", "0x3992:PUSH(1)", "0x3994:BYTE"] -DEBUG azoth_transform::obfuscator: Extract: Controller 0x2feef2ec at PC 0x385d: ["0x385d:JUMPDEST", "0x385e:PUSH(2)", "0x3861:SLOAD", "0x3862:ISZERO", "0x3863:PUSH(2)"] -DEBUG azoth_transform::obfuscator: Extract: Controller 0xfe03a460 at PC 0x39a5: ["0x39a5:JUMPDEST", "0x39a6:PUSH(2)", "0x39a9:SLOAD", "0x39aa:ISZERO", "0x39ab:PUSH(2)"] -DEBUG azoth_transform::obfuscator: Extract: Controller 0x9940686e at PC 0x3913: ["0x3913:JUMPDEST", "0x3914:PUSH(1)", "0x3916:CALLDATALOAD", "0x3917:PUSH(1)", "0x3919:BYTE"] -DEBUG azoth_transform::obfuscator: Extract: Controller 0x1aa7c0ec at PC 0x3846: ["0x3846:JUMPDEST", "0x3847:PUSH(1)", "0x3849:CALLDATALOAD", "0x384a:PUSH(1)", "0x384c:BYTE"] -DEBUG azoth_transform::obfuscator: Extract: Controller 0x80f323a7 at PC 0x38c1: ["0x38c1:JUMPDEST", "0x38c2:PUSH(1)", "0x38c4:CALLDATALOAD", "0x38c5:PUSH(1)", "0x38c7:BYTE"] -DEBUG azoth_transform::obfuscator: Extract: Controller 0x33ee5f35 at PC 0x3886: ["0x3886:JUMPDEST", "0x3887:PUSH(2)", "0x388a:SLOAD", "0x388b:ISZERO", "0x388c:PUSH(2)"] -DEBUG azoth_transform::obfuscator: Extract: Controller 0xd415b3f9 at PC 0x3953: ["0x3953:JUMPDEST", "0x3954:PUSH(2)", "0x3957:SLOAD", "0x3958:ISZERO", "0x3959:PUSH(2)"] -DEBUG azoth_transform::obfuscator: Extract: Controller 0xd4899a62 at PC 0x3965: ["0x3965:JUMPDEST", "0x3966:PUSH(1)", "0x3968:CALLDATALOAD", "0x3969:PUSH(1)", "0x396b:BYTE"] -DEBUG azoth_transform::obfuscator: Extract: Controller 0xcb766a56 at PC 0x393c: ["0x393c:JUMPDEST", "0x393d:PUSH(1)", "0x393f:CALLDATALOAD", "0x3940:PUSH(1)", "0x3942:BYTE"] -DEBUG azoth_transform::obfuscator: Extract: Controller 0x81972d00 at PC 0x38d8: ["0x38d8:JUMPDEST", "0x38d9:PUSH(2)", "0x38dc:SLOAD", "0x38dd:ISZERO", "0x38de:PUSH(2)"] -DEBUG azoth_transform::obfuscator: Extract: Controller 0x8677ab23 at PC 0x38ea: ["0x38ea:JUMPDEST", "0x38eb:PUSH(1)", "0x38ed:CALLDATALOAD", "0x38ee:PUSH(1)", "0x38f0:BYTE"] -DEBUG azoth_transform::obfuscator: Extract: Controller 0x8bd03d0a at PC 0x3901: ["0x3901:JUMPDEST", "0x3902:PUSH(2)", "0x3905:SLOAD", "0x3906:ISZERO", "0x3907:PUSH(2)"] -DEBUG azoth_transform::obfuscator: Extract: Controller 0xa65e2cfd at PC 0x392a: ["0x392a:JUMPDEST", "0x392b:PUSH(2)", "0x392e:SLOAD", "0x392f:ISZERO", "0x3930:PUSH(2)"] -DEBUG azoth_transform::obfuscator: Extract: Controller 0x308657d7 at PC 0x386f: ["0x386f:JUMPDEST", "0x3870:PUSH(1)", "0x3872:CALLDATALOAD", "0x3873:PUSH(1)", "0x3875:BYTE"] -DEBUG azoth_transform::obfuscator: Extract: Controller 0x046f7da2 at PC 0x3834: ["0x3834:JUMPDEST", "0x3835:PUSH(2)", "0x3838:SLOAD", "0x3839:ISZERO", "0x383a:PUSH(2)"] -DEBUG azoth_transform::obfuscator: Extract: Controller 0xede7f6a3 at PC 0x397c: ["0x397c:JUMPDEST", "0x397d:PUSH(2)", "0x3980:SLOAD", "0x3981:ISZERO", "0x3982:PUSH(2)"] -DEBUG azoth_transform::obfuscator: Extract: Controller 0x3ccfd60b at PC 0x3898: ["0x3898:JUMPDEST", "0x3899:PUSH(1)", "0x389b:CALLDATALOAD", "0x389c:PUSH(1)", "0x389e:BYTE"] -DEBUG azoth_transform::obfuscator: Extracted 7358 instructions from CFG -DEBUG azoth_core::encoder: Encoding instruction: pc=0, opcode='PUSH1', imm=Some("80") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=5, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=8, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=9, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=10, opcode='PUSH2', imm=Some("0011") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=15, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=16, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=17, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=18, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=19, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=20, opcode='PUSH1', imm=Some("e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=22, opcode='SHR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c -DEBUG azoth_core::encoder: Encoding instruction: pc=23, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=24, opcode='PUSH4', imm=Some("ae6e97f9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=29, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=30, opcode='PUSH2', imm=Some("3834") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=33, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=34, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=35, opcode='PUSH4', imm=Some("a8abc0a3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=40, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=41, opcode='PUSH2', imm=Some("3846") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=44, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=45, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=46, opcode='PUSH4', imm=Some("ac5a2ffa") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=51, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=52, opcode='PUSH2', imm=Some("385d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=55, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=56, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=57, opcode='PUSH4', imm=Some("306ed7ee") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=62, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=63, opcode='PUSH2', imm=Some("386f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=66, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=67, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=68, opcode='PUSH4', imm=Some("4020961c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=73, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=74, opcode='PUSH2', imm=Some("3886") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=77, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=78, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=79, opcode='PUSH4', imm=Some("0ca2d6c9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=84, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=85, opcode='PUSH2', imm=Some("3898") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=88, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=89, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=90, opcode='PUSH4', imm=Some("753a624f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=95, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=96, opcode='PUSH2', imm=Some("38af") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=99, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=100, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=101, opcode='PUSH4', imm=Some("80f130e7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=106, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=107, opcode='PUSH2', imm=Some("38c1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=110, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=111, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=112, opcode='PUSH4', imm=Some("9bbfb1f4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=117, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=118, opcode='PUSH2', imm=Some("38d8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=121, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=122, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=123, opcode='PUSH4', imm=Some("2dd1abc1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=128, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=129, opcode='PUSH2', imm=Some("38ea") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=132, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=133, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=134, opcode='PUSH4', imm=Some("1a6ea280") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=139, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=140, opcode='PUSH2', imm=Some("3901") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=143, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=144, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=145, opcode='PUSH4', imm=Some("994049e6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=150, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=151, opcode='PUSH2', imm=Some("3913") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=154, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=155, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=156, opcode='PUSH4', imm=Some("e224c59d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=161, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=162, opcode='PUSH2', imm=Some("392a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=165, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=166, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=167, opcode='PUSH4', imm=Some("1ce46a9e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=172, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=173, opcode='PUSH2', imm=Some("393c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=176, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=177, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=178, opcode='PUSH4', imm=Some("569bee5a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=183, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=184, opcode='PUSH2', imm=Some("3953") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=187, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=188, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=189, opcode='PUSH4', imm=Some("d4162d29") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=194, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=195, opcode='PUSH2', imm=Some("3965") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=198, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=199, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=200, opcode='PUSH4', imm=Some("e1be5dbb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=205, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=206, opcode='PUSH2', imm=Some("397c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=209, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=210, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=211, opcode='PUSH4', imm=Some("0f9c0474") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=216, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=217, opcode='PUSH2', imm=Some("398e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=220, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=221, opcode='PUSH4', imm=Some("395ec66a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=226, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=227, opcode='PUSH2', imm=Some("39a5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=230, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=231, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=232, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=233, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=234, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=235, opcode='PUSH2', imm=Some("0a3b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=238, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=239, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=240, opcode='PUSH2', imm=Some("0a16") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=243, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=244, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=245, opcode='PUSH2', imm=Some("0781") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=248, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=249, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=250, opcode='PUSH2', imm=Some("0747") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=253, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=254, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=255, opcode='PUSH2', imm=Some("072a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=258, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=259, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=260, opcode='PUSH2', imm=Some("0706") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=263, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=264, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=265, opcode='PUSH2', imm=Some("05cb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=268, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=269, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=270, opcode='PUSH2', imm=Some("0462") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=273, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=274, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=275, opcode='PUSH2', imm=Some("0445") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=278, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=279, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=280, opcode='PUSH2', imm=Some("0401") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=283, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=284, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=285, opcode='PUSH2', imm=Some("03ae") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=288, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=289, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=290, opcode='PUSH2', imm=Some("0391") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=293, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=294, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=295, opcode='PUSH2', imm=Some("0375") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=298, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=299, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=300, opcode='PUSH2', imm=Some("0239") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=303, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=304, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=305, opcode='PUSH2', imm=Some("021c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=308, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=309, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=310, opcode='PUSH2', imm=Some("01fa") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=313, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=314, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=315, opcode='PUSH2', imm=Some("01c0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=318, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=319, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=320, opcode='PUSH2', imm=Some("0198") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=323, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=324, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=325, opcode='CALLVALUE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 -DEBUG azoth_core::encoder: Encoding instruction: pc=326, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=329, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=330, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=331, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=332, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=334, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=335, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=336, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=337, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=340, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=341, opcode='PUSH2', imm=Some("0188") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=344, opcode='CALLER', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLER' -> byte 0x33 -DEBUG azoth_core::encoder: Encoding instruction: pc=345, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=378, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=380, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=382, opcode='PUSH1', imm=Some("a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=384, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=385, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=386, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=387, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=388, opcode='PUSH2', imm=Some("0a58") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=391, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=392, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=393, opcode='PUSH1', imm=Some("07") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=395, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=396, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=397, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=399, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=400, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=401, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=402, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=403, opcode='STOP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'STOP' -> byte 0x00 -DEBUG azoth_core::encoder: Encoding instruction: pc=404, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=405, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=406, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=407, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=408, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=409, opcode='CALLVALUE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 -DEBUG azoth_core::encoder: Encoding instruction: pc=410, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=413, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=414, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=415, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=416, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=418, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=419, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=420, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=421, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=424, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=425, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=427, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=428, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=430, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=431, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=433, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=435, opcode='PUSH1', imm=Some("a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=437, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=438, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=439, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=440, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=441, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=442, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=443, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=444, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=446, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=447, opcode='RETURN', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 -DEBUG azoth_core::encoder: Encoding instruction: pc=448, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=449, opcode='CALLVALUE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 -DEBUG azoth_core::encoder: Encoding instruction: pc=450, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=453, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=454, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=455, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=456, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=458, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=459, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=460, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=461, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=464, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=465, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=467, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=469, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=470, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=503, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=504, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=505, opcode='RETURN', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 -DEBUG azoth_core::encoder: Encoding instruction: pc=506, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=507, opcode='CALLVALUE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 -DEBUG azoth_core::encoder: Encoding instruction: pc=508, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=511, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=512, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=513, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=514, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=516, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=517, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=518, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=519, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=522, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=523, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=525, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=527, opcode='PUSH1', imm=Some("07") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=529, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=530, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=531, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=533, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=534, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=535, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=536, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=537, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=538, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=539, opcode='RETURN', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 -DEBUG azoth_core::encoder: Encoding instruction: pc=540, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=541, opcode='CALLVALUE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 -DEBUG azoth_core::encoder: Encoding instruction: pc=542, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=545, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=546, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=547, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=548, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=550, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=551, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=552, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=553, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=556, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=557, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=559, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=561, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=562, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=564, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=565, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=566, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=567, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=568, opcode='RETURN', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 -DEBUG azoth_core::encoder: Encoding instruction: pc=569, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=570, opcode='CALLVALUE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 -DEBUG azoth_core::encoder: Encoding instruction: pc=571, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=574, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=575, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=576, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=577, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=579, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=580, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=581, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=582, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=585, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=586, opcode='PUSH2', imm=Some("02a1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=589, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=591, opcode='PUSH2', imm=Some("025e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=594, opcode='PUSH1', imm=Some("07") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=596, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=597, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=599, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=600, opcode='PUSH1', imm=Some("08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=602, opcode='SHR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c -DEBUG azoth_core::encoder: Encoding instruction: pc=603, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=604, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=605, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=606, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=607, opcode='PUSH2', imm=Some("0267") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=610, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=611, opcode='PUSH2', imm=Some("0aa4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=614, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=615, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=616, opcode='PUSH2', imm=Some("0299") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=619, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=620, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=621, opcode='PUSH1', imm=Some("a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=623, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=624, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=625, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=658, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=659, opcode='CALLER', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLER' -> byte 0x33 -DEBUG azoth_core::encoder: Encoding instruction: pc=660, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=661, opcode='PUSH2', imm=Some("0a58") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=664, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=665, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=666, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=667, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=668, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=669, opcode='PUSH2', imm=Some("0b1f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=672, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=673, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=674, opcode='PUSH2', imm=Some("02a9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=677, opcode='PUSH2', imm=Some("1739") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=680, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=681, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=682, opcode='PUSH2', imm=Some("030b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=685, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=687, opcode='PUSH2', imm=Some("02bd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=690, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=692, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=693, opcode='PUSH1', imm=Some("02") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=695, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=696, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=697, opcode='PUSH2', imm=Some("0cfb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=700, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=701, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=702, opcode='PUSH2', imm=Some("02cd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=705, opcode='PUSH2', imm=Some("ff00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=708, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=709, opcode='PUSH1', imm=Some("07") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=711, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=712, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=713, opcode='PUSH1', imm=Some("07") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=715, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=716, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=717, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=718, opcode='PUSH2', imm=Some("02d6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=721, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=722, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=724, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=725, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=726, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=727, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=728, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=729, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=730, opcode='PUSH2', imm=Some("02e4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=733, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=734, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=735, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=736, opcode='PUSH2', imm=Some("0d08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=739, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=740, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=741, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=743, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=744, opcode='PUSH4', imm=Some("a9059cbb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=749, opcode='PUSH1', imm=Some("e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=751, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=752, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=753, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=754, opcode='CALLER', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLER' -> byte 0x33 -DEBUG azoth_core::encoder: Encoding instruction: pc=755, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=757, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=758, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=759, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=760, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=762, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=763, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=764, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=765, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=766, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=767, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=768, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=769, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=770, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=771, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=772, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=773, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=775, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=776, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=777, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=778, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=779, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=780, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=781, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=782, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=783, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=816, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=818, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=820, opcode='PUSH1', imm=Some("a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=822, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=823, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=824, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=825, opcode='GAS', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GAS' -> byte 0x5a -DEBUG azoth_core::encoder: Encoding instruction: pc=826, opcode='CALL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALL' -> byte 0xf1 -DEBUG azoth_core::encoder: Encoding instruction: pc=827, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=828, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=829, opcode='PUSH2', imm=Some("0370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=832, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=833, opcode='PUSH2', imm=Some("0346") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=836, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=837, opcode='STOP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'STOP' -> byte 0x00 -DEBUG azoth_core::encoder: Encoding instruction: pc=838, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=839, opcode='PUSH2', imm=Some("0367") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=842, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=843, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=845, opcode='RETURNDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'RETURNDATASIZE' -> byte 0x3d -DEBUG azoth_core::encoder: Encoding instruction: pc=846, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=848, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=849, opcode='PUSH2', imm=Some("0369") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=852, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=853, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=854, opcode='PUSH2', imm=Some("035f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=857, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=858, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=859, opcode='PUSH2', imm=Some("0d67") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=862, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=863, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=864, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=865, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=866, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=867, opcode='PUSH2', imm=Some("0d8e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=870, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=871, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=872, opcode='STOP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'STOP' -> byte 0x00 -DEBUG azoth_core::encoder: Encoding instruction: pc=873, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=874, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=875, opcode='RETURNDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'RETURNDATASIZE' -> byte 0x3d -DEBUG azoth_core::encoder: Encoding instruction: pc=876, opcode='PUSH2', imm=Some("0355") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=879, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=880, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=881, opcode='PUSH2', imm=Some("0da6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=884, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=885, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=886, opcode='CALLVALUE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 -DEBUG azoth_core::encoder: Encoding instruction: pc=887, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=890, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=891, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=892, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=893, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=895, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=896, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=897, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=898, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=901, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=902, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=904, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=905, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=906, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=908, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=909, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=910, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=911, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=912, opcode='RETURN', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 -DEBUG azoth_core::encoder: Encoding instruction: pc=913, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=914, opcode='CALLVALUE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 -DEBUG azoth_core::encoder: Encoding instruction: pc=915, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=918, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=919, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=920, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=921, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=923, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=924, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=925, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=926, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=929, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=930, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=932, opcode='PUSH1', imm=Some("05") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=934, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=935, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=937, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=938, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=939, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=940, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=941, opcode='RETURN', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 -DEBUG azoth_core::encoder: Encoding instruction: pc=942, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=943, opcode='CALLVALUE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 -DEBUG azoth_core::encoder: Encoding instruction: pc=944, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=947, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=948, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=949, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=950, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=952, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=953, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=954, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=955, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=958, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=959, opcode='PUSH2', imm=Some("03f2") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=962, opcode='CALLER', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLER' -> byte 0x33 -DEBUG azoth_core::encoder: Encoding instruction: pc=963, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=996, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=998, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1000, opcode='PUSH1', imm=Some("a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1002, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=1003, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=1004, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=1005, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=1006, opcode='PUSH2', imm=Some("0a58") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1009, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1010, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1011, opcode='PUSH1', imm=Some("07") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1013, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=1014, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=1015, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1017, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=1018, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=1019, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1021, opcode='OR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 -DEBUG azoth_core::encoder: Encoding instruction: pc=1022, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1023, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=1024, opcode='STOP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'STOP' -> byte 0x00 -DEBUG azoth_core::encoder: Encoding instruction: pc=1025, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1026, opcode='CALLVALUE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 -DEBUG azoth_core::encoder: Encoding instruction: pc=1027, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1030, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1031, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=1032, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=1033, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1035, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=1036, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=1037, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=1038, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1041, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1042, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1044, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=1045, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=1078, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1080, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1082, opcode='PUSH1', imm=Some("a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1084, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=1085, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=1086, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=1087, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=1088, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=1089, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1091, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1092, opcode='RETURN', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 -DEBUG azoth_core::encoder: Encoding instruction: pc=1093, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1094, opcode='CALLVALUE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 -DEBUG azoth_core::encoder: Encoding instruction: pc=1095, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1098, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1099, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=1100, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=1101, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1103, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=1104, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=1105, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=1106, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1109, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1110, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1112, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1114, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=1115, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1117, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=1118, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1119, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=1120, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=1121, opcode='RETURN', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 -DEBUG azoth_core::encoder: Encoding instruction: pc=1122, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1123, opcode='CALLVALUE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 -DEBUG azoth_core::encoder: Encoding instruction: pc=1124, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1127, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1128, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1130, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=1131, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1133, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=1134, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=1135, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=1136, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1139, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1140, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1142, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=1143, opcode='PUSH2', imm=Some("04a7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1146, opcode='PUSH2', imm=Some("04a2") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1149, opcode='PUSH2', imm=Some("049e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1152, opcode='PUSH1', imm=Some("07") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1154, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=1155, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1158, opcode='PUSH2', imm=Some("0493") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1161, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=1162, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1164, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1165, opcode='PUSH1', imm=Some("08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1167, opcode='SHR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c -DEBUG azoth_core::encoder: Encoding instruction: pc=1168, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=1169, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1170, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1171, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1172, opcode='PUSH2', imm=Some("0aa4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1175, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1176, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1177, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1179, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=1180, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1181, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1182, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1183, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=1184, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1185, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1186, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1187, opcode='PUSH2', imm=Some("0db1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1190, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1191, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1192, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=1193, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=1194, opcode='PUSH2', imm=Some("04be") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1197, opcode='PUSH2', imm=Some("04b6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1200, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=1201, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1203, opcode='SHR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c -DEBUG azoth_core::encoder: Encoding instruction: pc=1204, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1205, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1206, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1207, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=1208, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=1209, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=1210, opcode='PUSH2', imm=Some("0df6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1213, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1214, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1215, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1217, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=1218, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=1219, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=1220, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=1221, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1222, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=1223, opcode='PUSH2', imm=Some("05c1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1226, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1227, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1228, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=1229, opcode='PUSH2', imm=Some("058f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1232, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1233, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1234, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=1235, opcode='PUSH2', imm=Some("04e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1238, opcode='PUSH2', imm=Some("04e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1241, opcode='PUSH2', imm=Some("049e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1244, opcode='PUSH2', imm=Some("1172") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1247, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1248, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1249, opcode='PUSH2', imm=Some("0e9f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1252, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1253, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1254, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1256, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=1257, opcode='PUSH4', imm=Some("23b872dd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=1262, opcode='PUSH1', imm=Some("e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1264, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=1265, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=1266, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=1267, opcode='CALLER', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLER' -> byte 0x33 -DEBUG azoth_core::encoder: Encoding instruction: pc=1268, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1270, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=1271, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=1272, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=1273, opcode='ADDRESS', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADDRESS' -> byte 0x30 -DEBUG azoth_core::encoder: Encoding instruction: pc=1274, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1276, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=1277, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=1278, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=1279, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1281, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=1282, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=1283, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=1284, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1285, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=1286, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1287, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1289, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=1290, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1292, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=1293, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=1294, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1296, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1298, opcode='PUSH1', imm=Some("a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1300, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=1301, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=1302, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=1335, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=1336, opcode='GAS', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GAS' -> byte 0x5a -DEBUG azoth_core::encoder: Encoding instruction: pc=1337, opcode='CALL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALL' -> byte 0xf1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1338, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=1339, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=1340, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=1341, opcode='PUSH2', imm=Some("0370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1344, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1345, opcode='PUSH2', imm=Some("0367") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1348, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=1349, opcode='PUSH2', imm=Some("0572") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1352, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1353, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1354, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=1355, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1357, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=1358, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=1359, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1361, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1363, opcode='PUSH1', imm=Some("a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1365, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=1366, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=1367, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=1368, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=1369, opcode='CALLER', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLER' -> byte 0x33 -DEBUG azoth_core::encoder: Encoding instruction: pc=1370, opcode='OR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 -DEBUG azoth_core::encoder: Encoding instruction: pc=1371, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1372, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=1373, opcode='PUSH2', imm=Some("056d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1376, opcode='PUSH2', imm=Some("0568") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1379, opcode='TIMESTAMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'TIMESTAMP' -> byte 0x42 -DEBUG azoth_core::encoder: Encoding instruction: pc=1380, opcode='PUSH2', imm=Some("0ccb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1383, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1384, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1385, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1387, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=1388, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1389, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1390, opcode='PUSH1', imm=Some("05") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1392, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=1393, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1394, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1395, opcode='PUSH2', imm=Some("058a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1398, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1399, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1401, opcode='RETURNDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'RETURNDATASIZE' -> byte 0x3d -DEBUG azoth_core::encoder: Encoding instruction: pc=1402, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1404, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=1405, opcode='PUSH2', imm=Some("0369") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1408, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1409, opcode='PUSH2', imm=Some("035f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1412, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=1413, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=1414, opcode='PUSH2', imm=Some("0d67") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1417, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1418, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1419, opcode='PUSH2', imm=Some("0549") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1422, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1423, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1424, opcode='PUSH1', imm=Some("05") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1426, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=1427, opcode='PUSH2', imm=Some("059b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1430, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=1431, opcode='PUSH2', imm=Some("0cfb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1434, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1435, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1436, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=1437, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=1438, opcode='PUSH2', imm=Some("05b3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1441, opcode='PUSH2', imm=Some("05ae") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1444, opcode='PUSH1', imm=Some("05") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1446, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=1447, opcode='PUSH1', imm=Some("06") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1449, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=1450, opcode='PUSH2', imm=Some("0cfb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1453, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1454, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1455, opcode='PUSH1', imm=Some("06") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1457, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=1458, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1459, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1460, opcode='PUSH2', imm=Some("05bb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1463, opcode='PUSH2', imm=Some("1739") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1466, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1467, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1468, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=1469, opcode='PUSH2', imm=Some("04d1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1472, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1473, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1474, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1475, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=1476, opcode='TIMESTAMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'TIMESTAMP' -> byte 0x42 -DEBUG azoth_core::encoder: Encoding instruction: pc=1477, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=1478, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=1479, opcode='PUSH2', imm=Some("04cb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1482, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1483, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1484, opcode='CALLVALUE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 -DEBUG azoth_core::encoder: Encoding instruction: pc=1485, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1488, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1489, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1491, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=1492, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1494, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=1495, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=1496, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=1497, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1500, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1501, opcode='PUSH2', imm=Some("065a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1504, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1506, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=1507, opcode='PUSH2', imm=Some("0655") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1510, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1512, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=1513, opcode='PUSH2', imm=Some("061c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1516, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1518, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1520, opcode='PUSH1', imm=Some("a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1522, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=1523, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=1524, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=1557, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=1558, opcode='CALLER', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLER' -> byte 0x33 -DEBUG azoth_core::encoder: Encoding instruction: pc=1559, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=1560, opcode='PUSH2', imm=Some("0a58") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1563, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1564, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1565, opcode='PUSH2', imm=Some("0637") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1568, opcode='PUSH2', imm=Some("0632") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1571, opcode='PUSH2', imm=Some("049e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1574, opcode='PUSH1', imm=Some("07") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1576, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=1577, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1579, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1580, opcode='PUSH1', imm=Some("08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1582, opcode='SHR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c -DEBUG azoth_core::encoder: Encoding instruction: pc=1583, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=1584, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1585, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1586, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1587, opcode='PUSH2', imm=Some("0fe7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1590, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1591, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1592, opcode='PUSH2', imm=Some("0642") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1595, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=1596, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=1597, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=1598, opcode='PUSH2', imm=Some("1077") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1601, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1602, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1603, opcode='PUSH2', imm=Some("064d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1606, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=1607, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=1608, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=1609, opcode='PUSH2', imm=Some("10c3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1612, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1613, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1614, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=1615, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=1616, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=1617, opcode='PUSH1', imm=Some("02") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1619, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=1620, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1621, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1622, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1624, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=1625, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1626, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1627, opcode='PUSH2', imm=Some("069b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1630, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1632, opcode='PUSH2', imm=Some("066e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1635, opcode='PUSH1', imm=Some("02") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1637, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=1638, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1640, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=1641, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1642, opcode='PUSH2', imm=Some("0cfb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1645, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1646, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1647, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1649, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=1650, opcode='PUSH4', imm=Some("23b872dd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=1655, opcode='PUSH1', imm=Some("e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1657, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=1658, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=1659, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=1660, opcode='CALLER', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLER' -> byte 0x33 -DEBUG azoth_core::encoder: Encoding instruction: pc=1661, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1663, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=1664, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=1665, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=1666, opcode='ADDRESS', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADDRESS' -> byte 0x30 -DEBUG azoth_core::encoder: Encoding instruction: pc=1667, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1669, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=1670, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=1671, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=1672, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1674, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=1675, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=1676, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=1677, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1678, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=1679, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=1680, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=1681, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=1682, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1683, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=1684, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1685, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1687, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=1688, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=1689, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1690, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1691, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1692, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=1693, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=1694, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=1695, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=1728, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1730, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1732, opcode='PUSH1', imm=Some("a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1734, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=1735, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=1736, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=1737, opcode='GAS', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GAS' -> byte 0x5a -DEBUG azoth_core::encoder: Encoding instruction: pc=1738, opcode='CALL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALL' -> byte 0xf1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1739, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=1740, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=1741, opcode='PUSH2', imm=Some("0370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1744, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1745, opcode='PUSH2', imm=Some("06e9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1748, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1749, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1750, opcode='PUSH2', imm=Some("0367") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1753, opcode='PUSH2', imm=Some("0100") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1756, opcode='PUSH2', imm=Some("ff00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1759, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=1760, opcode='PUSH1', imm=Some("07") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1762, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=1763, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=1764, opcode='OR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 -DEBUG azoth_core::encoder: Encoding instruction: pc=1765, opcode='PUSH1', imm=Some("07") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1767, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=1768, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1769, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1770, opcode='PUSH2', imm=Some("0701") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1773, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1774, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1776, opcode='RETURNDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'RETURNDATASIZE' -> byte 0x3d -DEBUG azoth_core::encoder: Encoding instruction: pc=1777, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1779, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=1780, opcode='PUSH2', imm=Some("0369") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1783, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1784, opcode='PUSH2', imm=Some("035f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1787, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=1788, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=1789, opcode='PUSH2', imm=Some("0d67") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1792, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1793, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1794, opcode='PUSH2', imm=Some("06d5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1797, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1798, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1799, opcode='CALLVALUE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 -DEBUG azoth_core::encoder: Encoding instruction: pc=1800, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1803, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1804, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=1805, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=1806, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1808, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=1809, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=1810, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=1811, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1814, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1815, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1817, opcode='PUSH2', imm=Some("0720") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1820, opcode='PUSH2', imm=Some("1172") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1823, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=1824, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1825, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1827, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=1828, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1829, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=1830, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=1831, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=1832, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=1833, opcode='RETURN', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 -DEBUG azoth_core::encoder: Encoding instruction: pc=1834, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1835, opcode='CALLVALUE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 -DEBUG azoth_core::encoder: Encoding instruction: pc=1836, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1839, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1840, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=1841, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=1842, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1844, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=1845, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=1846, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=1847, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1850, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1851, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1853, opcode='PUSH1', imm=Some("02") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1855, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=1856, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1858, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=1859, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1860, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=1861, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=1862, opcode='RETURN', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 -DEBUG azoth_core::encoder: Encoding instruction: pc=1863, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1864, opcode='CALLVALUE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 -DEBUG azoth_core::encoder: Encoding instruction: pc=1865, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1868, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1869, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=1870, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=1871, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1873, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=1874, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=1875, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=1876, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1879, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1880, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1882, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1884, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=1885, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=1918, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=1919, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=1920, opcode='RETURN', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 -DEBUG azoth_core::encoder: Encoding instruction: pc=1921, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=1922, opcode='CALLVALUE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 -DEBUG azoth_core::encoder: Encoding instruction: pc=1923, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1926, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1927, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1929, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=1930, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1932, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=1933, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=1934, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=1935, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1938, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1939, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1941, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=1942, opcode='PUSH8', imm=Some("ffffffffffffffff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=1951, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=1952, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=1953, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1956, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1957, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=1958, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1960, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=1961, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=1962, opcode='PUSH1', imm=Some("a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1964, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1966, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=1967, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=1968, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=1969, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=1970, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=1971, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=1972, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1975, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=1976, opcode='PUSH2', imm=Some("09ea") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1979, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=1980, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1982, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=1983, opcode='PUSH2', imm=Some("095d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1986, opcode='PUSH2', imm=Some("0958") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1989, opcode='PUSH1', imm=Some("84") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1991, opcode='PUSH2', imm=Some("08e6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=1994, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=1996, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=1997, opcode='SWAP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 -DEBUG azoth_core::encoder: Encoding instruction: pc=1998, opcode='PUSH2', imm=Some("07e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2001, opcode='PUSH2', imm=Some("0493") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2004, opcode='PUSH1', imm=Some("07") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2006, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=2007, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2009, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2010, opcode='PUSH1', imm=Some("08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2012, opcode='SHR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c -DEBUG azoth_core::encoder: Encoding instruction: pc=2013, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=2014, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2015, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2016, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2017, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2019, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=2020, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2022, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2024, opcode='PUSH1', imm=Some("a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2026, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=2027, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=2028, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=2029, opcode='SWAP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 -DEBUG azoth_core::encoder: Encoding instruction: pc=2030, opcode='PUSH2', imm=Some("088d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2033, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2034, opcode='CALLER', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLER' -> byte 0x33 -DEBUG azoth_core::encoder: Encoding instruction: pc=2035, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=2036, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=2037, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=2038, opcode='PUSH2', imm=Some("0a03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2041, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=2042, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2043, opcode='PUSH2', imm=Some("0803") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2046, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2047, opcode='PUSH2', imm=Some("118a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2050, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2051, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2052, opcode='PUSH2', imm=Some("080f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2055, opcode='NUMBER', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NUMBER' -> byte 0x43 -DEBUG azoth_core::encoder: Encoding instruction: pc=2056, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=2057, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=2058, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=2059, opcode='PUSH2', imm=Some("11d5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2062, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2063, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2064, opcode='PUSH2', imm=Some("0844") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2067, opcode='PUSH2', imm=Some("081c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2070, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=2071, opcode='NUMBER', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NUMBER' -> byte 0x43 -DEBUG azoth_core::encoder: Encoding instruction: pc=2072, opcode='PUSH2', imm=Some("123e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2075, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2076, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2077, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=2110, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=2111, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=2112, opcode='PUSH2', imm=Some("124b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2115, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2116, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2117, opcode='PUSH2', imm=Some("0874") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2120, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=2121, opcode='BLOCKHASH', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'BLOCKHASH' -> byte 0x40 -DEBUG azoth_core::encoder: Encoding instruction: pc=2122, opcode='PUSH2', imm=Some("0854") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2125, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=2126, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=2127, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=2128, opcode='PUSH2', imm=Some("1310") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2131, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2132, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2133, opcode='PUSH2', imm=Some("0868") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2136, opcode='PUSH2', imm=Some("0861") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2139, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=2140, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=2141, opcode='PUSH2', imm=Some("135c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2144, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2145, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2146, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=2147, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=2148, opcode='PUSH2', imm=Some("13ab") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2151, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2152, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2153, opcode='DUP13', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP13' -> byte 0x8c -DEBUG azoth_core::encoder: Encoding instruction: pc=2154, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=2155, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=2156, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=2157, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=2158, opcode='KECCAK256', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'KECCAK256' -> byte 0x20 -DEBUG azoth_core::encoder: Encoding instruction: pc=2159, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=2160, opcode='PUSH2', imm=Some("13e1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2163, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2164, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2165, opcode='PUSH2', imm=Some("0887") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2168, opcode='PUSH2', imm=Some("0881") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2171, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=2172, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=2173, opcode='PUSH2', imm=Some("135c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2176, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2177, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2178, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2179, opcode='PUSH2', imm=Some("1a19") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2182, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2183, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2184, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=2185, opcode='PUSH2', imm=Some("142d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2188, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2189, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2190, opcode='PUSH2', imm=Some("08a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2193, opcode='PUSH2', imm=Some("089a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2196, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=2197, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=2198, opcode='PUSH2', imm=Some("135c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2201, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2202, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2203, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2204, opcode='PUSH2', imm=Some("1c2d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2207, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2208, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2209, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2210, opcode='PUSH2', imm=Some("08e1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2213, opcode='PUSH2', imm=Some("08dc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2216, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2218, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=2219, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=2220, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=2221, opcode='PUSH2', imm=Some("08b6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2224, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=2225, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=2226, opcode='PUSH2', imm=Some("135c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2229, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2230, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2231, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2232, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2234, opcode='DUP13', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP13' -> byte 0x8c -DEBUG azoth_core::encoder: Encoding instruction: pc=2235, opcode='PUSH2', imm=Some("08d4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2238, opcode='PUSH2', imm=Some("08ca") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2241, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2243, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=2244, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=2245, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=2246, opcode='PUSH2', imm=Some("135c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2249, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2250, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2251, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=2252, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2253, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=2254, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=2255, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=2256, opcode='PUSH2', imm=Some("135c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2259, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2260, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2261, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=2262, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2263, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=2264, opcode='PUSH2', imm=Some("1ce9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2267, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2268, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2269, opcode='PUSH2', imm=Some("1513") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2272, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2273, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2274, opcode='PUSH2', imm=Some("135c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2277, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2278, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2279, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=2280, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2281, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=2282, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=2283, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=2284, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=2285, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=2318, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=2319, opcode='SWAP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 -DEBUG azoth_core::encoder: Encoding instruction: pc=2320, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=2353, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=2354, opcode='PUSH32', imm=Some("0000000000000000000000000000000000000000000000000000000000000000") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=2387, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=2388, opcode='PUSH2', imm=Some("1e91") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2391, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2392, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2393, opcode='PUSH2', imm=Some("1631") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2396, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2397, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2398, opcode='PUSH2', imm=Some("0977") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2401, opcode='PUSH2', imm=Some("096e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2404, opcode='PUSH1', imm=Some("05") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2406, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=2407, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=2408, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=2409, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2410, opcode='PUSH2', imm=Some("0cfb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2413, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2414, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2415, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2417, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=2418, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2419, opcode='PUSH2', imm=Some("0cfb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2422, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2423, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2424, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2426, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=2427, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=2428, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2430, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2432, opcode='PUSH1', imm=Some("a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2434, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=2435, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=2436, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=2437, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=2438, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2439, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=2440, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=2441, opcode='PUSH2', imm=Some("0991") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2444, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=2445, opcode='PUSH1', imm=Some("05") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2447, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=2448, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2449, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2450, opcode='PUSH2', imm=Some("099a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2453, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=2454, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2456, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=2457, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2458, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2459, opcode='PUSH2', imm=Some("09aa") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2462, opcode='PUSH2', imm=Some("ff00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2465, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=2466, opcode='PUSH1', imm=Some("07") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2468, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=2469, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=2470, opcode='PUSH1', imm=Some("07") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2472, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=2473, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2474, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2475, opcode='PUSH2', imm=Some("09b3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2478, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=2479, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2481, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=2482, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2483, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2484, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=2485, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=2486, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=2487, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=2488, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2490, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=2491, opcode='PUSH4', imm=Some("a9059cbb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=2496, opcode='PUSH1', imm=Some("e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2498, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=2499, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=2500, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=2501, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2503, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2505, opcode='PUSH1', imm=Some("a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2507, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=2508, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=2509, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2510, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=2511, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=2512, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2514, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=2515, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=2516, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=2517, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2519, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=2520, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=2521, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=2522, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2523, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=2524, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=2525, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=2526, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=2527, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=2528, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=2529, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=2530, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=2531, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2532, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2534, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=2535, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=2536, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2537, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2538, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2539, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=2540, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=2541, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2543, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2545, opcode='PUSH1', imm=Some("a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2547, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=2548, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=2549, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=2550, opcode='GAS', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GAS' -> byte 0x5a -DEBUG azoth_core::encoder: Encoding instruction: pc=2551, opcode='CALL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALL' -> byte 0xf1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2552, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=2553, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=2554, opcode='PUSH2', imm=Some("0370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2557, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=2558, opcode='PUSH2', imm=Some("0346") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2561, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=2562, opcode='STOP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'STOP' -> byte 0x00 -DEBUG azoth_core::encoder: Encoding instruction: pc=2563, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2564, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=2565, opcode='PUSH2', imm=Some("0803") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2568, opcode='PUSH2', imm=Some("0a0f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2571, opcode='PUSH2', imm=Some("1172") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2574, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2575, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2576, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2577, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=2578, opcode='PUSH2', imm=Some("07fa") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2581, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2582, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2583, opcode='CALLVALUE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 -DEBUG azoth_core::encoder: Encoding instruction: pc=2584, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2587, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=2588, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=2589, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=2590, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2592, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=2593, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=2594, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=2595, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2598, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=2599, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2601, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2603, opcode='PUSH1', imm=Some("07") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2605, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=2606, opcode='PUSH1', imm=Some("08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2608, opcode='SHR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c -DEBUG azoth_core::encoder: Encoding instruction: pc=2609, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=2610, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2612, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=2613, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2614, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=2615, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=2616, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=2617, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=2618, opcode='RETURN', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 -DEBUG azoth_core::encoder: Encoding instruction: pc=2619, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2620, opcode='CALLVALUE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLVALUE' -> byte 0x34 -DEBUG azoth_core::encoder: Encoding instruction: pc=2621, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2624, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=2625, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=2626, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=2627, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2629, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=2630, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=2631, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=2632, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2635, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=2636, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2638, opcode='PUSH1', imm=Some("06") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2640, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=2641, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2643, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=2644, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2645, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=2646, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=2647, opcode='RETURN', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'RETURN' -> byte 0xf3 -DEBUG azoth_core::encoder: Encoding instruction: pc=2648, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2649, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=2650, opcode='PUSH2', imm=Some("0a5f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2653, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=2654, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2655, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2656, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2658, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=2659, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=2663, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2665, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=2666, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=2667, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=2668, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2670, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2672, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=2673, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=2674, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=2675, opcode='PUSH1', imm=Some("1d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2677, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2679, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=2680, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=2681, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=2682, opcode='PUSH32', imm=Some("adb2e11b90c5bd4f35c7886e31b623316dbb327698940ddf17856be4f2aa9a03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=2715, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2717, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=2718, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=2719, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=2720, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2722, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2723, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=2724, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2725, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=2726, opcode='PUSH2', imm=Some("0aab") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2729, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=2730, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2731, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2732, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2734, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=2735, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=2739, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2741, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=2742, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=2743, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=2744, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2746, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2748, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=2749, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=2750, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=2751, opcode='PUSH1', imm=Some("13") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2753, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2755, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=2756, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=2757, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=2758, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2760, opcode='PUSH2', imm=Some("3216") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2763, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2765, opcode='CODECOPY', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 -DEBUG azoth_core::encoder: Encoding instruction: pc=2766, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2768, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=2769, opcode='PUSH8', imm=Some("ed8ed47a17f90607") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=2778, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=2779, opcode='PUSH8', imm=Some("3cecbd313687c975") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=2788, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=2789, opcode='PUSH8', imm=Some("4a98a79091b2abac") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=2798, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=2799, opcode='PUSH8', imm=Some("17753d24d50737d5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=2808, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=2809, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=2810, opcode='PUSH4', imm=Some("f726c5b5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=2815, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=2816, opcode='PUSH4', imm=Some("30bb295a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=2821, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=2822, opcode='PUSH4', imm=Some("61f7fd7a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=2827, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=2828, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2829, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=2830, opcode='PUSH2', imm=Some("4d55") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2833, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2834, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=2835, opcode='PUSH1', imm=Some("6a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2837, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=2838, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2840, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=2841, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=2842, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=2843, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2845, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=2846, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=2847, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2848, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=2849, opcode='PUSH2', imm=Some("0b26") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2852, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=2853, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=2854, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=2855, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2857, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=2858, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=2862, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2864, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=2865, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=2866, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=2867, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2869, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2871, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=2872, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=2873, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=2874, opcode='PUSH1', imm=Some("37") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2876, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2878, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=2879, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=2880, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=2881, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2883, opcode='PUSH2', imm=Some("3236") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2886, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2888, opcode='CODECOPY', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 -DEBUG azoth_core::encoder: Encoding instruction: pc=2889, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2891, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=2892, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2894, opcode='PUSH2', imm=Some("3256") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2897, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2899, opcode='CODECOPY', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 -DEBUG azoth_core::encoder: Encoding instruction: pc=2900, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2902, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=2903, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=2904, opcode='PUSH32', imm=Some("08228020212024103a24c0d04002832030081a805100019100c0e89542000044") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=2937, opcode='OR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 -DEBUG azoth_core::encoder: Encoding instruction: pc=2938, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=2940, opcode='MUL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MUL' -> byte 0x02 -DEBUG azoth_core::encoder: Encoding instruction: pc=2941, opcode='PUSH2', imm=Some("6a8d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=2944, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=2945, opcode='PUSH16', imm=Some("1f10a20087de46a79e5aead386db0ebf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=2962, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=2963, opcode='PUSH16', imm=Some("62ac9df78db7876ec19fc4cf321b3430") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=2980, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=2981, opcode='PUSH16', imm=Some("fe0c7379090734ecb8b5a798f446c96a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=2998, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=2999, opcode='PUSH16', imm=Some("4fc230ee4f775a6a450a07d29a0da89c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=3016, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=3017, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3018, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3020, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=3021, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3022, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3023, opcode='PUSH32', imm=Some("10e5a42ca5d4250ac9312dcbc65ee6ff7882a5add19612eadb13e57f3c0fb850") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=3056, opcode='PUSH8', imm=Some("8e7f20391b10fd51") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=3065, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3066, opcode='PUSH8', imm=Some("25ef6125332872a9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=3075, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3076, opcode='PUSH8', imm=Some("59da2a79555f57c9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=3085, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3086, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3087, opcode='PUSH4', imm=Some("70d06fb7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=3092, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=3093, opcode='PUSH4', imm=Some("33208199") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=3098, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=3099, opcode='PUSH4', imm=Some("b21d1ffd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=3104, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3105, opcode='PUSH4', imm=Some("14535784") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=3110, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3111, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=3112, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=3113, opcode='PUSH1', imm=Some("0b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3115, opcode='MUL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MUL' -> byte 0x02 -DEBUG azoth_core::encoder: Encoding instruction: pc=3116, opcode='PUSH8', imm=Some("7bca71fa3c14b204") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=3125, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=3126, opcode='PUSH8', imm=Some("65d4766e9fe41601") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=3135, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=3136, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3137, opcode='PUSH2', imm=Some("ec52") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=3140, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=3141, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=3142, opcode='PUSH8', imm=Some("24e922842da5f11c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=3151, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3152, opcode='PUSH8', imm=Some("a5e4d6e6399e26a4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=3161, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3162, opcode='PUSH8', imm=Some("a47c6b3d9dce12a6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=3171, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3172, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=3173, opcode='PUSH32', imm=Some("d8ad2d894578f956c16e96a8e87688da4cf16c1d6016a9184a5222e63ab20833") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=3206, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=3207, opcode='PUSH4', imm=Some("7cfde2d2") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=3212, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3213, opcode='PUSH4', imm=Some("4e545952") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=3218, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3219, opcode='PUSH4', imm=Some("378023a1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=3224, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3225, opcode='PUSH4', imm=Some("f83ff677") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=3230, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3231, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=3232, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=3233, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3235, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=3236, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3237, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3238, opcode='PUSH1', imm=Some("84") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3240, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=3241, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=3242, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=3243, opcode='PUSH4', imm=Some("1e31fd4a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=3248, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=3249, opcode='PUSH4', imm=Some("fabd695a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=3254, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=3255, opcode='PUSH4', imm=Some("aac4ef61") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=3260, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=3261, opcode='PUSH1', imm=Some("e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3263, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=3264, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=3265, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3266, opcode='PUSH1', imm=Some("11") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3268, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3270, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3271, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3273, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=3274, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=3275, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=3276, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=3277, opcode='PUSH2', imm=Some("012c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=3280, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=3281, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3282, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=3283, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=3284, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=3285, opcode='PUSH2', imm=Some("0cda") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=3288, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=3289, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=3290, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=3291, opcode='PUSH2', imm=Some("0caa") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=3294, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=3295, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=3296, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=3297, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3299, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=3300, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3301, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=3302, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=3303, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=3304, opcode='PUSH2', imm=Some("0cda") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=3307, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=3308, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=3309, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=3310, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3312, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3313, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=3314, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=3315, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3317, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=3318, opcode='PUSH2', imm=Some("0cda") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=3321, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=3322, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=3323, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=3324, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=3325, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=3326, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=3327, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3328, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=3329, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=3330, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=3331, opcode='PUSH2', imm=Some("0cda") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=3334, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=3335, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=3336, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=3337, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=3338, opcode='PUSH2', imm=Some("0d0f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=3341, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=3342, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=3343, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=3344, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3346, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=3347, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=3351, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3353, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=3354, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=3355, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3356, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3358, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3360, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=3361, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3362, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3363, opcode='PUSH1', imm=Some("15") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3365, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3367, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=3368, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3369, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3370, opcode='PUSH21', imm=Some("bff7f9f7c59907f97268de3b41dc8e19ffd7105125") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH21' -> byte 0x74 -DEBUG azoth_core::encoder: Added 21 immediate bytes for PUSH21 -DEBUG azoth_core::encoder: Encoding instruction: pc=3392, opcode='PUSH1', imm=Some("58") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3394, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=3395, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3397, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=3398, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3399, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3400, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3402, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=3403, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=3404, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=3405, opcode='PUSH4', imm=Some("51a87fa7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=3410, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=3411, opcode='PUSH4', imm=Some("600f04e8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=3416, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=3417, opcode='PUSH1', imm=Some("e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3419, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=3420, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=3421, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3422, opcode='PUSH1', imm=Some("41") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3424, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3426, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3427, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3429, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=3430, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=3431, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=3432, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=3433, opcode='PUSH1', imm=Some("1f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3435, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=3436, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=3437, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=3438, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3439, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=3440, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=3441, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3442, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=3443, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=3444, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=3445, opcode='PUSH8', imm=Some("ffffffffffffffff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=3454, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=3455, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=3456, opcode='OR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 -DEBUG azoth_core::encoder: Encoding instruction: pc=3457, opcode='PUSH2', imm=Some("0d89") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=3460, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=3461, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3463, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3464, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=3465, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=3466, opcode='PUSH2', imm=Some("0d4c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=3469, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=3470, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=3471, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=3472, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=3473, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3475, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=3476, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=3477, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=3478, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=3481, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=3482, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=3483, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=3484, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=3485, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=3486, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=3487, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=3488, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=3491, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=3492, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=3493, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=3494, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=3495, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3497, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=3498, opcode='RETURNDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'RETURNDATASIZE' -> byte 0x3d -DEBUG azoth_core::encoder: Encoding instruction: pc=3499, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=3500, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=3501, opcode='RETURNDATACOPY', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'RETURNDATACOPY' -> byte 0x3e -DEBUG azoth_core::encoder: Encoding instruction: pc=3502, opcode='RETURNDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'RETURNDATASIZE' -> byte 0x3d -DEBUG azoth_core::encoder: Encoding instruction: pc=3503, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=3504, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=3505, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=3506, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=3507, opcode='PUSH2', imm=Some("0db8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=3510, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=3511, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=3512, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=3513, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3515, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=3516, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=3520, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3522, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=3523, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=3524, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3525, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3527, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3529, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=3530, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3531, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3532, opcode='PUSH1', imm=Some("16") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3534, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3536, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=3537, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3538, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3539, opcode='PUSH22', imm=Some("10d85b98d95b1b185d1a5bdb881c995c5d595cdd1959") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH22' -> byte 0x75 -DEBUG azoth_core::encoder: Added 22 immediate bytes for PUSH22 -DEBUG azoth_core::encoder: Encoding instruction: pc=3562, opcode='PUSH1', imm=Some("52") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3564, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=3565, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3567, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=3568, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3569, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3570, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3572, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=3573, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=3574, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=3575, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=3576, opcode='PUSH2', imm=Some("0dfd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=3579, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=3580, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=3581, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=3582, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3584, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=3585, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=3589, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3591, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=3592, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=3593, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3594, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3596, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3598, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=3599, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3600, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3601, opcode='PUSH1', imm=Some("2b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3603, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3605, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=3606, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3607, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3608, opcode='PUSH32', imm=Some("f8ca5fca02cd775cc0cc88c4ada13b63bc7e81259322bdad9fc1d8aba668ea6a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=3641, opcode='PUSH32', imm=Some("df7f7e74f9fff57b74317675e7f37d2d7ced63f3fde97f616ffe2afef7c92ded") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=3674, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=3675, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3677, opcode='PUSH2', imm=Some("3276") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=3680, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3682, opcode='CODECOPY', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 -DEBUG azoth_core::encoder: Encoding instruction: pc=3683, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3685, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=3686, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3687, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3689, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=3690, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3691, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3692, opcode='PUSH11', imm=Some("ef17fe807e0bd0d15c04dc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH11' -> byte 0x6a -DEBUG azoth_core::encoder: Added 11 immediate bytes for PUSH11 -DEBUG azoth_core::encoder: Encoding instruction: pc=3704, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3705, opcode='PUSH11', imm=Some("d5f700e98f2664b3681653") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH11' -> byte 0x6a -DEBUG azoth_core::encoder: Added 11 immediate bytes for PUSH11 -DEBUG azoth_core::encoder: Encoding instruction: pc=3717, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=3718, opcode='PUSH11', imm=Some("fb48a0fde6cd10c21692ec") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH11' -> byte 0x6a -DEBUG azoth_core::encoder: Added 11 immediate bytes for PUSH11 -DEBUG azoth_core::encoder: Encoding instruction: pc=3730, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=3731, opcode='PUSH1', imm=Some("aa") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3733, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=3734, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3736, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=3737, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3738, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3739, opcode='PUSH1', imm=Some("84") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3741, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=3742, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=3743, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=3744, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=3745, opcode='PUSH2', imm=Some("0ea6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=3748, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=3749, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=3750, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=3751, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3753, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=3754, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=3758, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3760, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=3761, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=3762, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3763, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3765, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3767, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=3768, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3769, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3770, opcode='PUSH1', imm=Some("22") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3772, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3774, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=3775, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3776, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=3777, opcode='PUSH32', imm=Some("15cc1956c2cc20b556d2cacb6c6ac1105674e5a363d5be58c0c04447cc1cd9cc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=3810, opcode='PUSH16', imm=Some("fe90cdec2f75531b29219d73116bc095") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=3827, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=3828, opcode='PUSH16', imm=Some("e60a6c05ae73c7647e5104e0304e65d5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=3845, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=3846, opcode='PUSH16', imm=Some("4450f181e6f88981d639826f70020579") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=3863, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=3864, opcode='PUSH16', imm=Some("7c49bac1fb2abf6a320641e8ac8815e6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=3881, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=3882, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3883, opcode='PUSH16', imm=Some("e2f53760ae9b3ecb3c2e50926cfa7b19") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=3900, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3901, opcode='PUSH16', imm=Some("82a5ff8598b80c3492a7c7c72ed8c403") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=3918, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3919, opcode='PUSH16', imm=Some("ece8dbfd72bca90640adbc131c961a31") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=3936, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=3937, opcode='PUSH16', imm=Some("0af9128dc6bc27d0ef21979973a52bef") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=3954, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=3955, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=3956, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3958, opcode='MUL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MUL' -> byte 0x02 -DEBUG azoth_core::encoder: Encoding instruction: pc=3959, opcode='PUSH4', imm=Some("15434c2b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=3964, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=3965, opcode='PUSH4', imm=Some("ef6dd62e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=3970, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=3971, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=3972, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3974, opcode='PUSH2', imm=Some("3296") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=3977, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3979, opcode='CODECOPY', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 -DEBUG azoth_core::encoder: Encoding instruction: pc=3980, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3982, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=3983, opcode='OR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 -DEBUG azoth_core::encoder: Encoding instruction: pc=3984, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3986, opcode='PUSH2', imm=Some("32b6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=3989, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3991, opcode='CODECOPY', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 -DEBUG azoth_core::encoder: Encoding instruction: pc=3992, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=3994, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=3995, opcode='OR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 -DEBUG azoth_core::encoder: Encoding instruction: pc=3996, opcode='PUSH16', imm=Some("73bbfbca09d80b53fb5d2535e4172d3f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=4013, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4014, opcode='PUSH16', imm=Some("fa976b454b4c498d68ac23c34641c9cc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=4031, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4032, opcode='PUSH16', imm=Some("5a4f41cdcdd74c122e3d1d48f23ca54a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=4049, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4050, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4051, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4053, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4054, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4055, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4056, opcode='PUSH2', imm=Some("1959") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=4059, opcode='PUSH1', imm=Some("f2") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4061, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=4062, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4064, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4065, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4066, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4067, opcode='PUSH1', imm=Some("84") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4069, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4070, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=4071, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=4072, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=4073, opcode='PUSH2', imm=Some("0fee") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=4076, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=4077, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=4078, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=4079, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4081, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=4082, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=4086, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4088, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=4089, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=4090, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4091, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4093, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4095, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4096, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4097, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4098, opcode='PUSH1', imm=Some("17") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4100, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4102, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4103, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4104, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4105, opcode='PUSH32', imm=Some("436f6e747261637420616c7265616479e31284bfcdb78fd8142b9c4454f0d90e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=4138, opcode='PUSH16', imm=Some("4fc19089ddec2007f4634aa9fd24d91b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=4155, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=4156, opcode='PUSH16', imm=Some("d1f79b6194ffe11f5a462b83c19233a8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=4173, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=4174, opcode='PUSH16', imm=Some("5c9a04b92041eac0ba0efd694febc10b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=4191, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=4192, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4193, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=4194, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4196, opcode='PUSH2', imm=Some("32d6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=4199, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4201, opcode='CODECOPY', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 -DEBUG azoth_core::encoder: Encoding instruction: pc=4202, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4204, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=4205, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=4206, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4208, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4209, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4210, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4211, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4213, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4214, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=4215, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=4216, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=4217, opcode='PUSH2', imm=Some("107e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=4220, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=4221, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=4222, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=4223, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4225, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=4226, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=4230, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4232, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=4233, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=4234, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4235, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4237, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4239, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4240, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4241, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4242, opcode='PUSH1', imm=Some("1e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4244, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4246, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4247, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4248, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4249, opcode='PUSH32', imm=Some("4c25e699040683bdada8e88c6721e7d56ecce32a09c8179e3caa3bc4e3c9b30b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=4282, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4284, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4285, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4286, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4287, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4289, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4290, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=4291, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=4292, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=4293, opcode='PUSH2', imm=Some("10ca") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=4296, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=4297, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=4298, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=4299, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4301, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=4302, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=4306, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4308, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=4309, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=4310, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4311, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4313, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4315, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4316, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4317, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4318, opcode='PUSH1', imm=Some("1f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4320, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4322, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4323, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4324, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4325, opcode='PUSH32', imm=Some("0bf824597cf7ae83b4761f29f4faa57dc20e51731c6648c7a83f41c20890e036") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=4358, opcode='PUSH2', imm=Some("ac5f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=4361, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4362, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=4363, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4365, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4366, opcode='DIV', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DIV' -> byte 0x04 -DEBUG azoth_core::encoder: Encoding instruction: pc=4367, opcode='PUSH2', imm=Some("6645") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=4370, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4371, opcode='PUSH16', imm=Some("534a8d0914ba721f9c1f2c9a85f6c31f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=4388, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=4389, opcode='PUSH16', imm=Some("1273008353f9c6508299a2d560199559") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=4406, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=4407, opcode='PUSH16', imm=Some("9aeff55dd9a4f67868cd91eb8d398cd9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=4424, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=4425, opcode='PUSH16', imm=Some("93d99036a31c53543c1de9496d539fd3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=4442, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=4443, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4444, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=4445, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4447, opcode='PUSH2', imm=Some("32f6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=4450, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4452, opcode='CODECOPY', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 -DEBUG azoth_core::encoder: Encoding instruction: pc=4453, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4455, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=4456, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4457, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4459, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4460, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4461, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4462, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4464, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4465, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=4466, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=4467, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4469, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=4470, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=4471, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=4472, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=4473, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4474, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=4475, opcode='PUSH2', imm=Some("1182") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=4478, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=4479, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=4480, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4481, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=4482, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=4483, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4484, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=4485, opcode='TIMESTAMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'TIMESTAMP' -> byte 0x42 -DEBUG azoth_core::encoder: Encoding instruction: pc=4486, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=4487, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=4488, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4489, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=4490, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=4491, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=4492, opcode='PUSH2', imm=Some("1191") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=4495, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=4496, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=4497, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=4498, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4500, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4502, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=4503, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=4507, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4509, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=4510, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=4511, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4512, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4514, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4516, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4517, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4518, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4519, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4521, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4523, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4524, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4525, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4526, opcode='PUSH32', imm=Some("6f0b597464682658e6873e17a615424678100a96a72bebf59633b58695a810ed") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=4559, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4561, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4562, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4563, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4564, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=4565, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=4566, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=4567, opcode='PUSH2', imm=Some("11dc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=4570, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=4571, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=4572, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=4573, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4575, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=4576, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=4580, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4582, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=4583, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=4584, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4585, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4587, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4589, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4590, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4591, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4592, opcode='PUSH1', imm=Some("1d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4594, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4596, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4597, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4598, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4599, opcode='PUSH32', imm=Some("7248126b9f7413b1dc7f599ba84d75feab7be5764800846fadf66a93dc6d5c17") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=4632, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4634, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4635, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4636, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4637, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4639, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4640, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=4641, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=4642, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4644, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=4645, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=4646, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4647, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=4648, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4649, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4650, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=4651, opcode='PUSH2', imm=Some("0cda") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=4654, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=4655, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=4656, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=4657, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=4658, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=4659, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=4660, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4661, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=4662, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4663, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4664, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=4665, opcode='PUSH2', imm=Some("0cda") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=4668, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=4669, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=4670, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=4671, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=4672, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4673, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4674, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=4675, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=4676, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4677, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=4678, opcode='PUSH2', imm=Some("0cda") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=4681, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=4682, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=4683, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=4684, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=4685, opcode='PUSH2', imm=Some("1252") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=4688, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=4689, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=4690, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=4691, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4693, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=4694, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=4698, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4700, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=4701, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=4702, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4703, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4705, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4707, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4708, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4709, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4710, opcode='PUSH1', imm=Some("14") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4712, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4714, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4715, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4716, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4717, opcode='PUSH32', imm=Some("149c14eedc6737ac4733a63fa476c41b6cd68f961acdb68ced1a533b310c8ccd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=4750, opcode='PUSH2', imm=Some("9b8b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=4753, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=4754, opcode='PUSH2', imm=Some("9c1a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=4757, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4758, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=4759, opcode='PUSH2', imm=Some("80f1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=4762, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4763, opcode='PUSH1', imm=Some("07") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4765, opcode='MUL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MUL' -> byte 0x02 -DEBUG azoth_core::encoder: Encoding instruction: pc=4766, opcode='PUSH32', imm=Some("6f49dbf72418ef9acbfe3063ddbd7fddfdffebffdbdbffffdfdb8eef5beda67f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=4799, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=4800, opcode='PUSH8', imm=Some("b09b6550b0b3111c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=4809, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4810, opcode='PUSH8', imm=Some("4a5927193ab4165e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=4819, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=4820, opcode='PUSH8', imm=Some("f59b28ea0024a36c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=4829, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=4830, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4831, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4833, opcode='MUL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MUL' -> byte 0x02 -DEBUG azoth_core::encoder: Encoding instruction: pc=4834, opcode='PUSH32', imm=Some("f8bd4d7c3aaf7a463892cddeb7dafddbdd7d0e18db7fd8fbfb5dfbffeeffdf7b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=4867, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=4868, opcode='PUSH1', imm=Some("62") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4870, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=4871, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4873, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4874, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4875, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4876, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4878, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4879, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=4880, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=4881, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=4882, opcode='PUSH2', imm=Some("1317") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=4885, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=4886, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=4887, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=4888, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4890, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=4891, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=4895, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4897, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=4898, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=4899, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4900, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4902, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4904, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4905, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4906, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4907, opcode='PUSH1', imm=Some("1d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4909, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4911, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4912, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4913, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4914, opcode='PUSH32', imm=Some("c3e041838ba15e22480485b133cd0fa565535066fb619fb5ac895f1f9373ed10") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=4947, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4949, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4950, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4951, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=4952, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4954, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4955, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=4956, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=4957, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4958, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=4959, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4960, opcode='PUSH1', imm=Some("1e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4962, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=4963, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=4964, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=4965, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=4966, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4967, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4968, opcode='SLT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLT' -> byte 0x12 -DEBUG azoth_core::encoder: Encoding instruction: pc=4969, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=4970, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=4973, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=4974, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4975, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=4976, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=4977, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=4978, opcode='PUSH8', imm=Some("ffffffffffffffff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=4987, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=4988, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=4989, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=4992, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=4993, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=4995, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=4996, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=4997, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=4998, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=4999, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=5000, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=5001, opcode='SGT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SGT' -> byte 0x13 -DEBUG azoth_core::encoder: Encoding instruction: pc=5002, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=5005, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=5006, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=5007, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=5008, opcode='PUSH8', imm=Some("ffffffffffffffff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=5017, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=5018, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=5019, opcode='PUSH2', imm=Some("0d89") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=5022, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=5023, opcode='PUSH1', imm=Some("1f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5025, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5026, opcode='PUSH1', imm=Some("1f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5028, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=5029, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=5030, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5032, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5033, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=5034, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=5035, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=5036, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=5037, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=5038, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=5039, opcode='PUSH2', imm=Some("0fee") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=5042, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=5043, opcode='PUSH2', imm=Some("138f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=5046, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=5047, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=5048, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=5049, opcode='PUSH2', imm=Some("0ffc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=5052, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5054, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=5055, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=5056, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=5057, opcode='PUSH2', imm=Some("0d67") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=5060, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=5061, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=5062, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=5063, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=5064, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=5065, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=5066, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=5067, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=5068, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=5069, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5070, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=5071, opcode='PUSH2', imm=Some("0194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=5074, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=5075, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=5076, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=5077, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5079, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=5080, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=5081, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=5082, opcode='SWAP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 -DEBUG azoth_core::encoder: Encoding instruction: pc=5083, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5084, opcode='CALLDATACOPY', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATACOPY' -> byte 0x37 -DEBUG azoth_core::encoder: Encoding instruction: pc=5085, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5086, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5087, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=5088, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=5089, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=5090, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=5091, opcode='PUSH2', imm=Some("13e8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=5094, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=5095, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=5096, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=5097, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5099, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=5100, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=5104, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5106, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=5107, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=5108, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=5109, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5111, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5113, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=5114, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5115, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=5116, opcode='PUSH1', imm=Some("1a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5118, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5120, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=5121, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5122, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=5123, opcode='PUSH32', imm=Some("abc6b3c4e91a2980fe57ea86f4c6d8d3843053e089adb6678e944ba7e0c31c52") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=5156, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5158, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=5159, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5160, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=5161, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5163, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=5164, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=5165, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=5166, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=5167, opcode='PUSH2', imm=Some("1434") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=5170, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=5171, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=5172, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=5173, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5175, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=5176, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=5180, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5182, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=5183, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=5184, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=5185, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5187, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5189, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=5190, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5191, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=5192, opcode='PUSH1', imm=Some("1c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5194, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5196, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=5197, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5198, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=5199, opcode='PUSH32', imm=Some("fe6729b2cc82f9a3078d07cde28d0463bf8e9a28af78ae6a3949c53a6fcb35f6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=5232, opcode='PUSH32', imm=Some("6b8944fa13fd55fc397c692325f2da106d408f96c4ad4085dc9b92f083a0460c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=5265, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=5266, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5268, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=5269, opcode='DIV', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DIV' -> byte 0x04 -DEBUG azoth_core::encoder: Encoding instruction: pc=5270, opcode='PUSH32', imm=Some("b8fbebb7f577eedfd2a40fe7dddbf2fff6671fe3abffcdef7ff7ffffa7ffbff0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=5303, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=5304, opcode='PUSH4', imm=Some("80d43b29") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=5309, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5310, opcode='PUSH4', imm=Some("4487b066") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=5315, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5316, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=5317, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=5318, opcode='PUSH4', imm=Some("90d78e9b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=5323, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=5324, opcode='PUSH4', imm=Some("e07a73f4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=5329, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=5330, opcode='PUSH4', imm=Some("be76adcf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=5335, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=5336, opcode='PUSH4', imm=Some("524da39b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=5341, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=5342, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=5343, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=5344, opcode='PUSH32', imm=Some("d88f0864b0058c3d7ecf6d8de535a71eb023678246bcbf8204a634a14278e548") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=5377, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=5378, opcode='PUSH2', imm=Some("7e2f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=5381, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=5382, opcode='PUSH2', imm=Some("ce41") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=5385, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=5386, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5388, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=5389, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5390, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=5391, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5393, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=5394, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=5395, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=5396, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=5397, opcode='PUSH2', imm=Some("151a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=5400, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=5401, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=5402, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=5403, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5405, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=5406, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=5410, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5412, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=5413, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=5414, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=5415, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5417, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5419, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=5420, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5421, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=5422, opcode='PUSH1', imm=Some("19") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5424, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5426, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=5427, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5428, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=5429, opcode='PUSH32', imm=Some("d67e1fd60c59571887de9092cd995182a02b0621672578e76a66e56db420d4ec") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=5462, opcode='PUSH8', imm=Some("a4d05a72816e467b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=5471, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5472, opcode='PUSH8', imm=Some("9cc28303eed2703d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=5481, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=5482, opcode='PUSH8', imm=Some("243c8c1bb5f04180") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=5491, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=5492, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5493, opcode='PUSH16', imm=Some("cb7aa8948e9e0a8892083c229d4ab7a3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=5510, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=5511, opcode='PUSH16', imm=Some("43ac4d32a18e2b952ff0feaaf3c1cac5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=5528, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=5529, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=5530, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=5531, opcode='PUSH32', imm=Some("afc5a06bd7b668e76c086f2d617ae779eaaade0553ea18343790db47dc96417f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=5564, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=5565, opcode='PUSH32', imm=Some("7febfffddbdf7ffffff6fe37beffaffefffffe6feff6df7dbfe7f47dfeffffbf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=5598, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=5599, opcode='PUSH32', imm=Some("faebfa7eeeffffaff9d7f7bdd91ddf9fffffff7d7dfddbce2f7ff5ac7fd69e3a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=5632, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=5633, opcode='PUSH32', imm=Some("2f3d43db5e65db8f777192d01e91127ab0aeaa4bf981dbdcc127b42c7ed7490b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=5666, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=5667, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=5668, opcode='PUSH2', imm=Some("bcd1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=5671, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5672, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5674, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=5675, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5676, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=5677, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5679, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=5680, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=5681, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=5682, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=5683, opcode='PUSH2', imm=Some("1638") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=5686, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=5687, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=5688, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=5689, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5691, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=5692, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=5696, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5698, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=5699, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=5700, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=5701, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5703, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5705, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=5706, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5707, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=5708, opcode='PUSH1', imm=Some("16") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5710, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5712, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=5713, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5714, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=5715, opcode='PUSH32', imm=Some("4647ddb50e8ad6a6f11504319aaf4bb83d84303d14cf58881585a25b4daf3a1a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=5748, opcode='PUSH8', imm=Some("3edd47452c305361") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=5757, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=5758, opcode='PUSH8', imm=Some("a9c7ce544651b9f1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=5767, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=5768, opcode='PUSH8', imm=Some("39299da8e9a0bd40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=5777, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=5778, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5779, opcode='PUSH4', imm=Some("cdc15070") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=5784, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=5785, opcode='PUSH4', imm=Some("3258a8aa") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=5790, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=5791, opcode='PUSH4', imm=Some("0ea80f19") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=5796, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=5797, opcode='PUSH4', imm=Some("c5e54b5c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=5802, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=5803, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=5804, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5806, opcode='PUSH2', imm=Some("3316") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=5809, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5811, opcode='CODECOPY', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 -DEBUG azoth_core::encoder: Encoding instruction: pc=5812, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5814, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=5815, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=5816, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=5817, opcode='PUSH16', imm=Some("0df779ba4da27d1de0b8bc5e4f158d96") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=5834, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=5835, opcode='PUSH16', imm=Some("d286baed8d53baadde879b15f7d4a505") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=5852, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=5853, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=5854, opcode='PUSH16', imm=Some("3cf1c33323290bc5178e786127398a1b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=5871, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5872, opcode='PUSH16', imm=Some("0abd3cc692a8b14a229d9c22e7d0b7be") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=5889, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=5890, opcode='PUSH16', imm=Some("1e1998612d200240d4d2c6d8b6512b68") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=5907, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=5908, opcode='PUSH16', imm=Some("43db3233075bde34d9965af833994fc9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=5925, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=5926, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=5927, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=5928, opcode='PUSH2', imm=Some("4697") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=5931, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=5932, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=5933, opcode='PUSH1', imm=Some("52") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5935, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=5936, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5938, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=5939, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=5940, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=5941, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5943, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=5944, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=5945, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=5946, opcode='PUSH2', imm=Some("1149") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=5949, opcode='PUSH2', imm=Some("1172") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=5952, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=5953, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=5954, opcode='PUSH2', imm=Some("1766") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=5957, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=5958, opcode='PUSH12', imm=Some("ffffffffffffffffffffffff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH12' -> byte 0x6b -DEBUG azoth_core::encoder: Added 12 immediate bytes for PUSH12 -DEBUG azoth_core::encoder: Encoding instruction: pc=5971, opcode='PUSH1', imm=Some("a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5973, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=5974, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5976, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=5977, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=5978, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5980, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=5981, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=5982, opcode='PUSH1', imm=Some("05") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5984, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=5985, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=5986, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5988, opcode='SSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SSTORE' -> byte 0x55 -DEBUG azoth_core::encoder: Encoding instruction: pc=5989, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=5990, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=5991, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=5993, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=5994, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=5998, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6000, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=6001, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=6002, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=6003, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6005, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6007, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=6008, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6009, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=6010, opcode='PUSH1', imm=Some("21") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6012, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6014, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=6015, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6016, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=6017, opcode='PUSH32', imm=Some("47616f6eef77a272e5f76574207f6e697def3066ff6e74eba5efcabe0851de5e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=6050, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6053, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6054, opcode='PUSH8', imm=Some("b7c34f7f9560b322") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=6063, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6064, opcode='PUSH8', imm=Some("3f8d6f9b161baaf8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=6073, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=6074, opcode='PUSH8', imm=Some("91a2cac24a365504") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=6083, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=6084, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6085, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=6086, opcode='PUSH2', imm=Some("ab0c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6089, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6090, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=6091, opcode='PUSH2', imm=Some("b7e7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6094, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6095, opcode='PUSH8', imm=Some("2405a5712a2634bb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=6104, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6105, opcode='PUSH8', imm=Some("15bfee4c71ce7383") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=6114, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=6115, opcode='PUSH8', imm=Some("ac3506be36b68813") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=6124, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6125, opcode='PUSH8', imm=Some("db6581030007674c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=6134, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6135, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6136, opcode='PUSH8', imm=Some("c6f0c93987ab6e03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=6145, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=6146, opcode='PUSH8', imm=Some("c81713fd6b23f41e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=6155, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=6156, opcode='PUSH8', imm=Some("0eabbed34475269b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=6165, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=6166, opcode='PUSH8', imm=Some("db85a818aaa47a3d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=6175, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=6176, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6177, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=6178, opcode='PUSH32', imm=Some("53ffeeff6f7c357b7d7bfffffdf7f9fdee75ebeb6f7f6d34eff7f0eb1f7ff5ee") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=6211, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=6212, opcode='PUSH4', imm=Some("a781df5f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=6217, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6218, opcode='PUSH4', imm=Some("a2a520c1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=6223, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=6224, opcode='PUSH4', imm=Some("48d1f2c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=6229, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=6230, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6231, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=6232, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6234, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=6235, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6236, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=6237, opcode='PUSH1', imm=Some("65") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6239, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6241, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=6242, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6244, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=6245, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6246, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=6247, opcode='PUSH1', imm=Some("84") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6249, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6250, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=6251, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6252, opcode='PUSH4', imm=Some("fd86ddcf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=6257, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6258, opcode='PUSH4', imm=Some("704567f2") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=6263, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=6264, opcode='PUSH4', imm=Some("f25dfd63") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=6269, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=6270, opcode='PUSH4', imm=Some("4c9afd09") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=6275, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=6276, opcode='PUSH1', imm=Some("e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6278, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=6279, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=6280, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=6281, opcode='PUSH1', imm=Some("32") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6283, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6285, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=6286, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6288, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=6289, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=6290, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6291, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6292, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=6293, opcode='PUSH2', imm=Some("189b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6296, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=6297, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6298, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6299, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6300, opcode='PUSH2', imm=Some("186b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6303, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6304, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6305, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6306, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=6307, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=6308, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=6309, opcode='PUSH2', imm=Some("189b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6312, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=6313, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6314, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6315, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6316, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6317, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=6318, opcode='PUSH2', imm=Some("18b3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6321, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=6322, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6323, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6324, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6326, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=6327, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=6331, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6333, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=6334, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=6335, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=6336, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6338, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6340, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=6341, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6342, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=6343, opcode='PUSH1', imm=Some("10") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6345, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6347, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=6348, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6349, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=6350, opcode='PUSH31', imm=Some("1448032829020c2040c0000200a2a6939b98b27b13591990535917846f57d4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH31' -> byte 0x7e -DEBUG azoth_core::encoder: Added 31 immediate bytes for PUSH31 -DEBUG azoth_core::encoder: Encoding instruction: pc=6382, opcode='PUSH2', imm=Some("db0c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6385, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6386, opcode='PUSH32', imm=Some("fee382e853d0e930c32808fbf9774c516a1bef995b3effce7eb124a70ffb9bfa") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=6419, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=6420, opcode='PUSH15', imm=Some("c44de153ba74ac4d50ad69ee687238") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH15' -> byte 0x6e -DEBUG azoth_core::encoder: Added 15 immediate bytes for PUSH15 -DEBUG azoth_core::encoder: Encoding instruction: pc=6436, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=6437, opcode='PUSH15', imm=Some("2b159eac45434b9e2f42956e346d38") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH15' -> byte 0x6e -DEBUG azoth_core::encoder: Added 15 immediate bytes for PUSH15 -DEBUG azoth_core::encoder: Encoding instruction: pc=6453, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=6454, opcode='OR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 -DEBUG azoth_core::encoder: Encoding instruction: pc=6455, opcode='PUSH4', imm=Some("9467835a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=6460, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6461, opcode='PUSH4', imm=Some("df3e0180") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=6466, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6467, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6468, opcode='PUSH2', imm=Some("6afd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6471, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6472, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=6473, opcode='PUSH16', imm=Some("047ff6b77e47123de021b1f658247e32") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=6490, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6491, opcode='PUSH16', imm=Some("adfdd66b44325cb3c164112c286a903f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=6508, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6509, opcode='PUSH16', imm=Some("85573386cdeb666fb5d09b22e9c7234a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=6526, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6527, opcode='PUSH16', imm=Some("d87c10de6fa32a9ebcabb5c295ac2259") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=6544, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6545, opcode='OR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 -DEBUG azoth_core::encoder: Encoding instruction: pc=6546, opcode='PUSH1', imm=Some("82") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6548, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=6549, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6551, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=6552, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6553, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=6554, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6556, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6557, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=6558, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6559, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6561, opcode='PUSH1', imm=Some("f6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6563, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=6564, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=6565, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=6566, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6567, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6568, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6570, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=6571, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=6572, opcode='PUSH2', imm=Some("0cda") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6575, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=6576, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6577, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6578, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6580, opcode='PUSH1', imm=Some("bf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6582, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=6583, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=6584, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=6585, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6586, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6587, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6589, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=6590, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=6591, opcode='PUSH2', imm=Some("0cda") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6594, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=6595, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6596, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6597, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6599, opcode='PUSH1', imm=Some("b6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6601, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=6602, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=6603, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=6604, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6605, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6606, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6608, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=6609, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=6610, opcode='PUSH2', imm=Some("0cda") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6613, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=6614, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6615, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6616, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6618, opcode='PUSH1', imm=Some("7f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6620, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=6621, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=6622, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=6623, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6624, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6625, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6627, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=6628, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=6629, opcode='PUSH2', imm=Some("0cda") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6632, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=6633, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6634, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6635, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6637, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=6638, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6640, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6641, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6642, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6644, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=6645, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=6646, opcode='PUSH2', imm=Some("0cda") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6649, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=6650, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6651, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6652, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=6653, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=6654, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=6655, opcode='PUSH2', imm=Some("189b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6658, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=6659, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6661, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6662, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6663, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6664, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6665, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6666, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=6667, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=6668, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=6669, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=6670, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=6671, opcode='PUSH2', imm=Some("189b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6674, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=6675, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6676, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6678, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6679, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6680, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6681, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6682, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=6683, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6684, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=6685, opcode='PUSH2', imm=Some("12dc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6688, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6690, opcode='PUSH1', imm=Some("fe") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6692, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=6693, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6695, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6697, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6699, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=6700, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=6701, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=6702, opcode='PUSH2', imm=Some("12d4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6705, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6708, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=6709, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=6710, opcode='PUSH2', imm=Some("1892") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6713, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6714, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6715, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=6716, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6718, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6720, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6722, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=6723, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=6724, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=6725, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=6726, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6727, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6728, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6729, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=6730, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=6731, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=6732, opcode='PUSH2', imm=Some("18ac") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6735, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6736, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6737, opcode='PUSH1', imm=Some("1f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6739, opcode='PUSH1', imm=Some("fb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6741, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=6742, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6744, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6746, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6748, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=6749, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=6750, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=6751, opcode='PUSH2', imm=Some("12f7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6754, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6757, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=6758, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=6759, opcode='PUSH2', imm=Some("1892") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6762, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6763, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6764, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=6765, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=6766, opcode='PUSH2', imm=Some("1b15") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6769, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=6770, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=6771, opcode='PUSH2', imm=Some("132b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6774, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6777, opcode='PUSH2', imm=Some("1326") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6780, opcode='PUSH2', imm=Some("1321") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6783, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6786, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6789, opcode='PUSH2', imm=Some("1331") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6792, opcode='SWAP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP8' -> byte 0x97 -DEBUG azoth_core::encoder: Encoding instruction: pc=6793, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=6794, opcode='DUP13', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP13' -> byte 0x8c -DEBUG azoth_core::encoder: Encoding instruction: pc=6795, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6798, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6799, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6800, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6802, opcode='SHR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c -DEBUG azoth_core::encoder: Encoding instruction: pc=6803, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6804, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6805, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6806, opcode='PUSH2', imm=Some("199e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6809, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6810, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6811, opcode='PUSH2', imm=Some("19ea") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6814, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6815, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6816, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6817, opcode='PUSH2', imm=Some("0cfb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6820, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6821, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6822, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6823, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6824, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=6825, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6826, opcode='PUSH1', imm=Some("08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6828, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=6829, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=6830, opcode='PUSH2', imm=Some("1b00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6833, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=6834, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=6835, opcode='PUSH2', imm=Some("1348") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6838, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=6839, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=6840, opcode='PUSH2', imm=Some("225b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6843, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6844, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6845, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=6846, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=6847, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=6848, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6849, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=6850, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6851, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=6852, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=6853, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=6854, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=6855, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=6856, opcode='PUSH2', imm=Some("1afb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6859, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=6860, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6862, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6863, opcode='PUSH1', imm=Some("08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6865, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=6866, opcode='PUSH2', imm=Some("137e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6869, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6872, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6875, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6878, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=6879, opcode='DUP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 -DEBUG azoth_core::encoder: Encoding instruction: pc=6880, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6883, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6884, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6885, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=6886, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6888, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6890, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6892, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=6893, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=6894, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=6895, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=6896, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6897, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6898, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6899, opcode='OR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 -DEBUG azoth_core::encoder: Encoding instruction: pc=6900, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=6901, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6902, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=6903, opcode='PUSH2', imm=Some("1ac2") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6906, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6907, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6908, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=6909, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=6910, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=6911, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6912, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6913, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=6914, opcode='PUSH2', imm=Some("139a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6917, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6919, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=6920, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=6921, opcode='DUP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 -DEBUG azoth_core::encoder: Encoding instruction: pc=6922, opcode='PUSH2', imm=Some("2082") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6925, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6926, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6927, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=6928, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6929, opcode='PUSH2', imm=Some("1aa9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6932, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6933, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6934, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=6935, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6937, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=6938, opcode='PUSH2', imm=Some("1aa7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6941, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6942, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6943, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=6944, opcode='PUSH2', imm=Some("1b25") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=6947, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=6948, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=6949, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=6950, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6952, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=6953, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=6957, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6959, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=6960, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=6961, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=6962, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6964, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6966, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=6967, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6968, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=6969, opcode='PUSH1', imm=Some("21") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6971, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=6973, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=6974, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=6975, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=6976, opcode='PUSH32', imm=Some("dd4fe724d77e3c6577302a303c515ffdee9dffb7aff7479ffff31dae7e07efc4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=7009, opcode='PUSH32', imm=Some("fefb63ee6d3ceff15ff62ebbff73dd5be7abfeefaa976ffd7ff67cb6ea567eb7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=7042, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=7043, opcode='PUSH16', imm=Some("8579f77bd5f8a87b2d3834b0dbb04df1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=7060, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=7061, opcode='PUSH16', imm=Some("fd277a1a80452d2fc560fb4ea561b158") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=7078, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=7079, opcode='PUSH16', imm=Some("480982906e6d160051f864cc777e7cc4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=7096, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=7097, opcode='PUSH16', imm=Some("20f4dd01ff973e68a55d920c919b720f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=7114, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=7115, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=7116, opcode='PUSH15', imm=Some("153a89a3fc98bbf1c238c91cb9c3bd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH15' -> byte 0x6e -DEBUG azoth_core::encoder: Added 15 immediate bytes for PUSH15 -DEBUG azoth_core::encoder: Encoding instruction: pc=7132, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=7133, opcode='PUSH15', imm=Some("2776d84260152a09e9384a7822be76") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH15' -> byte 0x6e -DEBUG azoth_core::encoder: Added 15 immediate bytes for PUSH15 -DEBUG azoth_core::encoder: Encoding instruction: pc=7149, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=7150, opcode='PUSH15', imm=Some("ff2b9b8ad09eb22d9735a205fae31f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH15' -> byte 0x6e -DEBUG azoth_core::encoder: Added 15 immediate bytes for PUSH15 -DEBUG azoth_core::encoder: Encoding instruction: pc=7166, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=7167, opcode='PUSH15', imm=Some("ed1b09995be33511fcc0642a9311c8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH15' -> byte 0x6e -DEBUG azoth_core::encoder: Added 15 immediate bytes for PUSH15 -DEBUG azoth_core::encoder: Encoding instruction: pc=7183, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=7184, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=7185, opcode='PUSH2', imm=Some("b3b8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7188, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=7189, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=7190, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7192, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=7193, opcode='DIV', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DIV' -> byte 0x04 -DEBUG azoth_core::encoder: Encoding instruction: pc=7194, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7196, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=7197, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=7198, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=7199, opcode='PUSH1', imm=Some("67") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7201, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7203, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=7204, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7206, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=7207, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=7208, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=7209, opcode='PUSH1', imm=Some("84") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7211, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=7212, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=7213, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7214, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=7215, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=7216, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=7217, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=7218, opcode='PUSH2', imm=Some("1422") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7221, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7223, opcode='PUSH1', imm=Some("fe") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7225, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=7226, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7228, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7230, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7232, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=7233, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=7234, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=7235, opcode='PUSH2', imm=Some("12d4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7238, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7241, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=7242, opcode='DUP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 -DEBUG azoth_core::encoder: Encoding instruction: pc=7243, opcode='PUSH2', imm=Some("1892") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7246, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7247, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7248, opcode='PUSH1', imm=Some("1f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7250, opcode='PUSH1', imm=Some("fb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7252, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=7253, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7255, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7257, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7259, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=7260, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=7261, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=7262, opcode='PUSH2', imm=Some("143d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7265, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7268, opcode='DUP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 -DEBUG azoth_core::encoder: Encoding instruction: pc=7269, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=7270, opcode='PUSH2', imm=Some("1892") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7273, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7274, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7275, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=7276, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=7277, opcode='PUSH2', imm=Some("1ce1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7280, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=7281, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=7282, opcode='PUSH2', imm=Some("132b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7285, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7288, opcode='PUSH2', imm=Some("1326") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7291, opcode='PUSH2', imm=Some("1321") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7294, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7297, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7300, opcode='PUSH2', imm=Some("1461") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7303, opcode='SWAP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP8' -> byte 0x97 -DEBUG azoth_core::encoder: Encoding instruction: pc=7304, opcode='DUP12', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b -DEBUG azoth_core::encoder: Encoding instruction: pc=7305, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=7306, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7309, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7310, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7311, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=7312, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7313, opcode='PUSH1', imm=Some("05") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7315, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=7316, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=7317, opcode='PUSH2', imm=Some("1ccc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7320, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=7321, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=7322, opcode='PUSH2', imm=Some("1495") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7325, opcode='PUSH2', imm=Some("149a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7328, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=7329, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=7330, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=7331, opcode='PUSH1', imm=Some("05") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7333, opcode='PUSH1', imm=Some("fd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7335, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=7336, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=7337, opcode='PUSH2', imm=Some("148e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7340, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7343, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=7344, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7346, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7348, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=7349, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=7350, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=7351, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7354, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7355, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7356, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=7357, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=7358, opcode='PUSH2', imm=Some("1b1e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7361, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7362, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7363, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7366, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7367, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7368, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=7369, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=7370, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=7371, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7372, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7373, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=7374, opcode='PUSH2', imm=Some("14ad") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7377, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7379, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=7380, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=7381, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=7382, opcode='PUSH2', imm=Some("2082") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7385, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7386, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7387, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=7388, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=7389, opcode='PUSH2', imm=Some("1c90") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7392, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7393, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7394, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=7395, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7397, opcode='PUSH2', imm=Some("1c8e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7400, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7401, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7402, opcode='PUSH2', imm=Some("14d2") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7405, opcode='PUSH2', imm=Some("14da") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7408, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=7409, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=7410, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=7411, opcode='SWAP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 -DEBUG azoth_core::encoder: Encoding instruction: pc=7412, opcode='PUSH2', imm=Some("14e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7415, opcode='SWAP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP9' -> byte 0x98 -DEBUG azoth_core::encoder: Encoding instruction: pc=7416, opcode='SWAP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP8' -> byte 0x97 -DEBUG azoth_core::encoder: Encoding instruction: pc=7417, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=7418, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=7419, opcode='PUSH2', imm=Some("13ab") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7422, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7423, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7424, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=7425, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=7426, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=7427, opcode='PUSH2', imm=Some("13ab") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7430, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7431, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7432, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=7433, opcode='PUSH2', imm=Some("251e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7436, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7437, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7438, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=7439, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7440, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7441, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=7442, opcode='PUSH2', imm=Some("1d17") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7445, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=7446, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7447, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7448, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7450, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=7451, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=7455, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7457, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=7458, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=7459, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=7460, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7462, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7464, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=7465, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=7466, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=7467, opcode='PUSH1', imm=Some("13") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7469, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7471, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=7472, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=7473, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=7474, opcode='PUSH32', imm=Some("1e9438793f135a22938bd86f6c26c4f9b9d18f698ba13f857e9392b3129162eb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=7507, opcode='PUSH32', imm=Some("e16bc786c0eca5dd6c74279093ddd1edac45372cb665e6d0b7c304542f7457db") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=7540, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=7541, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7543, opcode='PUSH2', imm=Some("3336") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7546, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7548, opcode='CODECOPY', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 -DEBUG azoth_core::encoder: Encoding instruction: pc=7549, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7551, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=7552, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=7553, opcode='PUSH1', imm=Some("6c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7555, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=7556, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7558, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=7559, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=7560, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=7561, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7563, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=7564, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=7565, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7566, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=7567, opcode='PUSH2', imm=Some("1d94") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7570, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=7571, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7572, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7573, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7575, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=7576, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=7580, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7582, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=7583, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=7584, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=7585, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7587, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7589, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=7590, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=7591, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=7592, opcode='PUSH1', imm=Some("10") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7594, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7596, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=7597, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=7598, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=7599, opcode='PUSH32', imm=Some("558162d93b8f3fc5a37d7e277929e2566fce6f6ca735927e100f6e038651e4f3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=7632, opcode='PUSH32', imm=Some("b57fe274fa4abfa5a16d6d216fa99bc21879fd0e3e6a0eeeb8867cfffba3a7a4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=7665, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=7666, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=7667, opcode='PUSH16', imm=Some("21171abf88613e2a01946e4fe77981d6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=7684, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=7685, opcode='PUSH16', imm=Some("6ea56fab17a755f626b4c35d7b476f26") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=7702, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=7703, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=7704, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=7705, opcode='PUSH2', imm=Some("6a2c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7708, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=7709, opcode='PUSH32', imm=Some("5fae7d1ab2a311c77de3ee6916332142fa7bfdff3fea5d37efeffbfcffdefd6f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=7742, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=7743, opcode='PUSH8', imm=Some("a6f752de11baaba3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=7752, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=7753, opcode='PUSH8', imm=Some("9a621aeac7cdadfb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=7762, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=7763, opcode='PUSH8', imm=Some("5d7cd5679b8cdf2c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=7772, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=7773, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=7774, opcode='PUSH1', imm=Some("0b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7776, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=7777, opcode='DIV', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DIV' -> byte 0x04 -DEBUG azoth_core::encoder: Encoding instruction: pc=7778, opcode='PUSH15', imm=Some("b43697fe2861de2cd90553215a3b84") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH15' -> byte 0x6e -DEBUG azoth_core::encoder: Added 15 immediate bytes for PUSH15 -DEBUG azoth_core::encoder: Encoding instruction: pc=7794, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=7795, opcode='PUSH15', imm=Some("3b2927eb918bdfcd201438bca4bff8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH15' -> byte 0x6e -DEBUG azoth_core::encoder: Added 15 immediate bytes for PUSH15 -DEBUG azoth_core::encoder: Encoding instruction: pc=7811, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=7812, opcode='OR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 -DEBUG azoth_core::encoder: Encoding instruction: pc=7813, opcode='PUSH1', imm=Some("84") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7815, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=7816, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7818, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=7819, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=7820, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=7821, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7823, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=7824, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=7825, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7826, opcode='SWAP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 -DEBUG azoth_core::encoder: Encoding instruction: pc=7827, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=7828, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=7829, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=7830, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=7831, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=7832, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=7833, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=7834, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=7835, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=7836, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=7837, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=7838, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=7839, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=7840, opcode='PUSH2', imm=Some("1fde") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7843, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=7844, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7845, opcode='PUSH2', imm=Some("1fd5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7848, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=7849, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7850, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7852, opcode='PUSH2', imm=Some("1594") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7855, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7858, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7861, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=7862, opcode='PUSH2', imm=Some("159c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7865, opcode='SWAP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 -DEBUG azoth_core::encoder: Encoding instruction: pc=7866, opcode='PUSH1', imm=Some("c0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7868, opcode='SWAP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 -DEBUG azoth_core::encoder: Encoding instruction: pc=7869, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7872, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7873, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7874, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=7875, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=7876, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=7877, opcode='PUSH2', imm=Some("1d10") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7880, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7881, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7882, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=7883, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7885, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7887, opcode='PUSH2', imm=Some("15b2") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7890, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7893, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7896, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=7897, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=7898, opcode='DUP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 -DEBUG azoth_core::encoder: Encoding instruction: pc=7899, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7902, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7903, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7904, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=7905, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=7906, opcode='PUSH2', imm=Some("1fc3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7909, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=7910, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7913, opcode='PUSH2', imm=Some("1326") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7916, opcode='PUSH2', imm=Some("1321") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7919, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7922, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7925, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=7926, opcode='PUSH2', imm=Some("15d5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7929, opcode='SWAP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP9' -> byte 0x98 -DEBUG azoth_core::encoder: Encoding instruction: pc=7930, opcode='PUSH2', imm=Some("132b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7933, opcode='SWAP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP8' -> byte 0x97 -DEBUG azoth_core::encoder: Encoding instruction: pc=7934, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7937, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7938, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7939, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=7940, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=7941, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7942, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=7943, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=7944, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7945, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7947, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=7948, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=7949, opcode='PUSH2', imm=Some("1faa") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7952, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=7953, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=7954, opcode='PUSH1', imm=Some("c0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7956, opcode='PUSH2', imm=Some("15fd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7959, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7962, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7965, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7968, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=7969, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=7970, opcode='PUSH2', imm=Some("1604") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7973, opcode='SWAP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP8' -> byte 0x97 -DEBUG azoth_core::encoder: Encoding instruction: pc=7974, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7977, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7978, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7979, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=7980, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=7981, opcode='PUSH2', imm=Some("1d8d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7984, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=7985, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=7986, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=7987, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=7989, opcode='PUSH2', imm=Some("161b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7992, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7995, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=7998, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8001, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=8002, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=8003, opcode='DUP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 -DEBUG azoth_core::encoder: Encoding instruction: pc=8004, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8007, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8008, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8009, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=8010, opcode='PUSH2', imm=Some("1f99") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8013, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=8014, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8017, opcode='PUSH2', imm=Some("1326") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8020, opcode='PUSH2', imm=Some("1321") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8023, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8026, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8029, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=8030, opcode='PUSH2', imm=Some("163d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8033, opcode='SWAP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP9' -> byte 0x98 -DEBUG azoth_core::encoder: Encoding instruction: pc=8034, opcode='PUSH2', imm=Some("132b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8037, opcode='SWAP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP8' -> byte 0x97 -DEBUG azoth_core::encoder: Encoding instruction: pc=8038, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8041, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8042, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8043, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8044, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8045, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=8046, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8047, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8048, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=8049, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=8050, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=8051, opcode='PUSH2', imm=Some("1f82") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8054, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=8055, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8056, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8057, opcode='PUSH2', imm=Some("14e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8060, opcode='SWAP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 -DEBUG azoth_core::encoder: Encoding instruction: pc=8061, opcode='SWAP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 -DEBUG azoth_core::encoder: Encoding instruction: pc=8062, opcode='PUSH2', imm=Some("279f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8065, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8066, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8067, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8068, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8069, opcode='PUSH2', imm=Some("1664") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8072, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8074, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8075, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=8076, opcode='DUP12', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b -DEBUG azoth_core::encoder: Encoding instruction: pc=8077, opcode='PUSH2', imm=Some("2082") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8080, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8081, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8082, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=8083, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=8084, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8085, opcode='PUSH2', imm=Some("1f6f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8088, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8089, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8090, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8091, opcode='PUSH2', imm=Some("1677") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8094, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8095, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8096, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8099, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8100, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8101, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8102, opcode='PUSH2', imm=Some("1f6c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8105, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8106, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8107, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8108, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8109, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8111, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8112, opcode='PUSH2', imm=Some("168b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8115, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8116, opcode='PUSH2', imm=Some("2082") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8119, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8120, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8121, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8122, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=8123, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8124, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=8125, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=8126, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8127, opcode='PUSH2', imm=Some("1f08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8130, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8131, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8132, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8133, opcode='PUSH2', imm=Some("16a1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8136, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8137, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8138, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8141, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8142, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8143, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=8144, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8145, opcode='PUSH2', imm=Some("1f05") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8148, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8149, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8150, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8152, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8153, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8154, opcode='PUSH2', imm=Some("1ea9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8157, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8158, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8159, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8160, opcode='PUSH1', imm=Some("80") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8162, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8164, opcode='PUSH2', imm=Some("16c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8167, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8170, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8173, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=8174, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=8175, opcode='PUSH2', imm=Some("1892") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8178, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8179, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8180, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=8181, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=8182, opcode='PUSH2', imm=Some("1ea4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8185, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8186, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8187, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=8188, opcode='PUSH2', imm=Some("2001") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8191, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=8192, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8193, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8194, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8196, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=8197, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=8201, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8203, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=8204, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=8205, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=8206, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8208, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8210, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=8211, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=8212, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=8213, opcode='PUSH1', imm=Some("18") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8215, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8217, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=8218, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=8219, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=8220, opcode='PUSH32', imm=Some("524e582a6f6e667367f4287f7ffda47fe738e2ef7d6e6cf36023f000d9fff9be") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=8253, opcode='PUSH32', imm=Some("fffcd2f5ef77ff7b7d75a6ef75766a6f6e26737ff5ffe77f9f900f3dc5f1ffff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=8286, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=8287, opcode='PUSH4', imm=Some("b499b2de") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=8292, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=8293, opcode='PUSH4', imm=Some("354b71c9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=8298, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=8299, opcode='PUSH4', imm=Some("7135c3b5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=8304, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=8305, opcode='PUSH4', imm=Some("66d71162") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=8310, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=8311, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8312, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=8313, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8315, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=8316, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=8317, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=8318, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8320, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8321, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=8322, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8323, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8324, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8325, opcode='PUSH2', imm=Some("1726") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8328, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=8329, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=8330, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=8331, opcode='PUSH2', imm=Some("1ffa") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8334, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8335, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8336, opcode='PUSH2', imm=Some("1737") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8339, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8342, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8345, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=8346, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=8347, opcode='DUP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 -DEBUG azoth_core::encoder: Encoding instruction: pc=8348, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8351, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8352, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8353, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8354, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8356, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=8357, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=8358, opcode='PUSH1', imm=Some("80") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8360, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=8361, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=8362, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=8363, opcode='PUSH2', imm=Some("20bb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8366, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=8367, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8368, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8369, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8370, opcode='PUSH2', imm=Some("14e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8373, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8374, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8375, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8378, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8379, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8380, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8381, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8382, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8383, opcode='PUSH1', imm=Some("b8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8385, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=8386, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=8387, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=8388, opcode='PUSH2', imm=Some("20e3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8391, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=8392, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8393, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8394, opcode='PUSH2', imm=Some("14e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8397, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8398, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8399, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8402, opcode='PUSH2', imm=Some("1774") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8405, opcode='PUSH2', imm=Some("132b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8408, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8409, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8412, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8413, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8414, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8415, opcode='PUSH2', imm=Some("19d7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8418, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8419, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8420, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8421, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8422, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8423, opcode='PUSH1', imm=Some("c0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8425, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=8426, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=8427, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=8428, opcode='PUSH2', imm=Some("215e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8431, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=8432, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8433, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8436, opcode='PUSH2', imm=Some("1796") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8439, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8440, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=8441, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=8442, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=8443, opcode='PUSH2', imm=Some("19c4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8446, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8447, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8448, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8449, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=8450, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=8451, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=8452, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8453, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8454, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=8455, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=8456, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=8457, opcode='PUSH2', imm=Some("2125") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8460, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=8461, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8462, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8463, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8464, opcode='PUSH2', imm=Some("14e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8467, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8468, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8469, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8472, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8475, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8476, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8479, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8480, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8481, opcode='PUSH2', imm=Some("0cfb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8484, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8485, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8486, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8487, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8488, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=8489, opcode='PUSH2', imm=Some("17cb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8492, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8494, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8495, opcode='PUSH1', imm=Some("08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8497, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=8498, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8499, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8500, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8501, opcode='PUSH2', imm=Some("17eb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8504, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8507, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8510, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8513, opcode='PUSH2', imm=Some("17e4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8516, opcode='DUP12', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b -DEBUG azoth_core::encoder: Encoding instruction: pc=8517, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8520, opcode='DUP12', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b -DEBUG azoth_core::encoder: Encoding instruction: pc=8521, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8524, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8525, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8526, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=8527, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=8528, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8531, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8532, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8533, opcode='OR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 -DEBUG azoth_core::encoder: Encoding instruction: pc=8534, opcode='SWAP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 -DEBUG azoth_core::encoder: Encoding instruction: pc=8535, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=8536, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8537, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8538, opcode='PUSH2', imm=Some("2105") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8541, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8542, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8543, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8544, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8545, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8546, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8548, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=8549, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=8550, opcode='PUSH2', imm=Some("2184") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8553, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=8554, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8555, opcode='PUSH2', imm=Some("14e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8558, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8559, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8560, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8563, opcode='PUSH2', imm=Some("1815") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8566, opcode='PUSH2', imm=Some("132b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8569, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8570, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8573, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8574, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8575, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8576, opcode='PUSH2', imm=Some("19b1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8579, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8580, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8581, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8582, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8583, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8586, opcode='PUSH2', imm=Some("1829") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8589, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8590, opcode='PUSH2', imm=Some("199e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8593, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8594, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8595, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8596, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=8597, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=8598, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=8599, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8600, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8601, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=8602, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=8603, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=8604, opcode='PUSH2', imm=Some("21b3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8607, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=8608, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8609, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8610, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8611, opcode='PUSH2', imm=Some("14e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8614, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8615, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8616, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8619, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8622, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8623, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8626, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8627, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8628, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8629, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8630, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=8631, opcode='PUSH2', imm=Some("1859") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8634, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8636, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8637, opcode='PUSH1', imm=Some("08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8639, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=8640, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8641, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8642, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8643, opcode='PUSH2', imm=Some("1872") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8646, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8649, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8652, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8655, opcode='PUSH2', imm=Some("17e4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8658, opcode='DUP12', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b -DEBUG azoth_core::encoder: Encoding instruction: pc=8659, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8662, opcode='DUP12', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b -DEBUG azoth_core::encoder: Encoding instruction: pc=8663, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8666, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8667, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8668, opcode='OR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 -DEBUG azoth_core::encoder: Encoding instruction: pc=8669, opcode='SWAP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 -DEBUG azoth_core::encoder: Encoding instruction: pc=8670, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=8671, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8672, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8673, opcode='PUSH2', imm=Some("2198") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8676, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8677, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8678, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8680, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=8681, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=8682, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8683, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8684, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8685, opcode='PUSH2', imm=Some("188d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8688, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=8689, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=8690, opcode='PUSH2', imm=Some("0d67") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8693, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8694, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8695, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8697, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=8698, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=8699, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8700, opcode='PUSH1', imm=Some("1f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8702, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=8703, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=8704, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=8705, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8707, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=8708, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=8709, opcode='CALLDATACOPY', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATACOPY' -> byte 0x37 -DEBUG azoth_core::encoder: Encoding instruction: pc=8710, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8711, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8712, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8714, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=8715, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=8716, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8717, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8718, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8719, opcode='PUSH2', imm=Some("18af") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8722, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=8723, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=8724, opcode='PUSH2', imm=Some("0d67") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8727, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8728, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8729, opcode='PUSH1', imm=Some("14") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8731, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=8732, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=8733, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8734, opcode='PUSH1', imm=Some("1f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8736, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=8737, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=8738, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=8739, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8741, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=8742, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=8743, opcode='CALLDATACOPY', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATACOPY' -> byte 0x37 -DEBUG azoth_core::encoder: Encoding instruction: pc=8744, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8745, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8746, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8747, opcode='PUSH2', imm=Some("18ca") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8750, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=8751, opcode='PUSH2', imm=Some("138f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8754, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8755, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8756, opcode='PUSH2', imm=Some("18d7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8759, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8761, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=8762, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8763, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=8764, opcode='PUSH2', imm=Some("0d67") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8767, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8768, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8769, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=8770, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=8771, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=8772, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=8773, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8774, opcode='PUSH2', imm=Some("18e8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8777, opcode='PUSH1', imm=Some("1f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8779, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=8780, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8781, opcode='PUSH2', imm=Some("138f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8784, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8785, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8786, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=8787, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8788, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8790, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=8791, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8792, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=8793, opcode='CALLDATACOPY', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATACOPY' -> byte 0x37 -DEBUG azoth_core::encoder: Encoding instruction: pc=8794, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8795, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8796, opcode='PUSH2', imm=Some("18fd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8799, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=8800, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=8801, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=8802, opcode='PUSH2', imm=Some("1ffa") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8805, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8806, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8807, opcode='PUSH2', imm=Some("190e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8810, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8813, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8816, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=8817, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=8818, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=8819, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8822, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8823, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8824, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8825, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8827, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=8828, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=8829, opcode='PUSH1', imm=Some("80") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8831, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=8832, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=8833, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=8834, opcode='PUSH2', imm=Some("22b1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8837, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=8838, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8839, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8840, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8841, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8842, opcode='PUSH2', imm=Some("1928") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8845, opcode='PUSH2', imm=Some("21e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8848, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8849, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8850, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8851, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8853, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=8854, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8856, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8858, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8860, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=8861, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=8862, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=8863, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=8864, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=8865, opcode='BYTE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a -DEBUG azoth_core::encoder: Encoding instruction: pc=8866, opcode='PUSH2', imm=Some("1941") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8869, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=8870, opcode='PUSH2', imm=Some("19fb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8873, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8874, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8875, opcode='MSTORE8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 -DEBUG azoth_core::encoder: Encoding instruction: pc=8876, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8877, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8879, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8880, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8881, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8882, opcode='PUSH1', imm=Some("b8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8884, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=8885, opcode='SWAP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 -DEBUG azoth_core::encoder: Encoding instruction: pc=8886, opcode='SWAP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 -DEBUG azoth_core::encoder: Encoding instruction: pc=8887, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=8888, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=8889, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=8890, opcode='SWAP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 -DEBUG azoth_core::encoder: Encoding instruction: pc=8891, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=8892, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=8893, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=8894, opcode='PUSH2', imm=Some("231f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8897, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=8898, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8899, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8902, opcode='PUSH2', imm=Some("1965") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8905, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8906, opcode='PUSH2', imm=Some("19d7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8909, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8910, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8911, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=8912, opcode='PUSH2', imm=Some("196f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8915, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=8916, opcode='PUSH2', imm=Some("2229") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8919, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8920, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8921, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=8922, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=8923, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8924, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=8925, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=8926, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=8927, opcode='PUSH2', imm=Some("22ef") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8930, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=8931, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8932, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8933, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8934, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=8935, opcode='PUSH2', imm=Some("14e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8938, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=8939, opcode='PUSH2', imm=Some("0ced") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8942, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8943, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8944, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=8945, opcode='PUSH2', imm=Some("19a3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8948, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8951, opcode='PUSH2', imm=Some("199c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8954, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8956, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=8957, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8960, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=8961, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8964, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8965, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8966, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=8967, opcode='DUP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 -DEBUG azoth_core::encoder: Encoding instruction: pc=8968, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8971, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8972, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8973, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=8974, opcode='BYTE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a -DEBUG azoth_core::encoder: Encoding instruction: pc=8975, opcode='PUSH2', imm=Some("19af") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8978, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=8979, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=8980, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8983, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8984, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8985, opcode='MSTORE8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 -DEBUG azoth_core::encoder: Encoding instruction: pc=8986, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=8987, opcode='PUSH2', imm=Some("22db") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8990, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=8991, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=8992, opcode='PUSH1', imm=Some("c0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=8994, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=8995, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=8996, opcode='PUSH2', imm=Some("23c0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=8999, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=9000, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9003, opcode='PUSH2', imm=Some("19ca") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9006, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=9007, opcode='PUSH2', imm=Some("19c4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9010, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9011, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9012, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9013, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=9014, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=9015, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=9016, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9017, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=9018, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=9019, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=9020, opcode='PUSH2', imm=Some("2391") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9023, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=9024, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9025, opcode='PUSH2', imm=Some("19e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9028, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=9029, opcode='PUSH2', imm=Some("2229") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9032, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9033, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9034, opcode='SWAP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 -DEBUG azoth_core::encoder: Encoding instruction: pc=9035, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=9036, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9037, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=9038, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=9039, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=9040, opcode='PUSH2', imm=Some("2364") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9043, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=9044, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9045, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9046, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9047, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9048, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9049, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9052, opcode='PUSH2', imm=Some("14e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9055, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=9056, opcode='PUSH2', imm=Some("0ced") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9059, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9060, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9061, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=9062, opcode='PUSH2', imm=Some("1a15") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9065, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9068, opcode='PUSH2', imm=Some("199c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9071, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9073, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=9074, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9077, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=9078, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9081, opcode='DUP12', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b -DEBUG azoth_core::encoder: Encoding instruction: pc=9082, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9085, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9086, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9087, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=9088, opcode='BYTE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a -DEBUG azoth_core::encoder: Encoding instruction: pc=9089, opcode='PUSH2', imm=Some("1a21") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9092, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=9093, opcode='DUP12', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b -DEBUG azoth_core::encoder: Encoding instruction: pc=9094, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9097, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9098, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9099, opcode='MSTORE8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 -DEBUG azoth_core::encoder: Encoding instruction: pc=9100, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9101, opcode='PUSH2', imm=Some("234c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9104, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9105, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9106, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=9107, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9109, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9110, opcode='PUSH1', imm=Some("08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9112, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=9113, opcode='PUSH2', imm=Some("1a4f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9116, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9119, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9122, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9125, opcode='PUSH2', imm=Some("1a48") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9128, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=9129, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9132, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=9133, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9136, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9137, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9138, opcode='DUP13', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP13' -> byte 0x8c -DEBUG azoth_core::encoder: Encoding instruction: pc=9139, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=9140, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9143, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9144, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9145, opcode='OR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 -DEBUG azoth_core::encoder: Encoding instruction: pc=9146, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=9147, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9148, opcode='PUSH2', imm=Some("2338") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9151, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9152, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9153, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9155, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=9156, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=9160, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9162, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=9163, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=9164, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=9165, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9167, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9169, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=9170, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9171, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=9172, opcode='PUSH1', imm=Some("1e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9174, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9176, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=9177, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9178, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=9179, opcode='PUSH32', imm=Some("85ad1ce7eaa2a4c842d0f1e3a77427a6668ecf70c0583e0e686f401f2f772194") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=9212, opcode='PUSH8', imm=Some("ed7eb3f2b09df3d2") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=9221, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9222, opcode='PUSH8', imm=Some("b177bfc56f5f1ab2") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=9231, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9232, opcode='PUSH8', imm=Some("de8d6f9632d53169") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=9241, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9242, opcode='PUSH8', imm=Some("058c3e0af46fb0d5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=9251, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9252, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9253, opcode='PUSH4', imm=Some("efb71aa3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=9258, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9259, opcode='PUSH4', imm=Some("282f7b45") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=9264, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9265, opcode='PUSH4', imm=Some("20b0147e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=9270, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9271, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9272, opcode='PUSH8', imm=Some("f372fbd4ed26d8fa") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=9281, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=9282, opcode='PUSH8', imm=Some("157c9ff88b636fae") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=9291, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=9292, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9293, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=9294, opcode='PUSH8', imm=Some("55312f57fd49bd0d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=9303, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9304, opcode='PUSH8', imm=Some("871f88fb91284ef2") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=9313, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9314, opcode='PUSH8', imm=Some("41e35209c57106a5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=9323, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=9324, opcode='PUSH8', imm=Some("24c669140ef94f08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=9333, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=9334, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9335, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=9336, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9338, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=9339, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9340, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=9341, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9343, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9344, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=9345, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9346, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=9347, opcode='PUSH2', imm=Some("2488") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9350, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=9351, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9352, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9353, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9355, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=9356, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=9360, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9362, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=9363, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=9364, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=9365, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9367, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9369, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=9370, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9371, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=9372, opcode='PUSH1', imm=Some("21") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9374, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9376, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=9377, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9378, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=9379, opcode='PUSH32', imm=Some("17ca7ec893e3373c833fb1a5b5b8797eb15209d50d3728b9d94daefc2eb56fdd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=9412, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9414, opcode='PUSH2', imm=Some("3356") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9417, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9419, opcode='CODECOPY', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 -DEBUG azoth_core::encoder: Encoding instruction: pc=9420, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9422, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=9423, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9424, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9426, opcode='PUSH2', imm=Some("3376") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9429, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9431, opcode='CODECOPY', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 -DEBUG azoth_core::encoder: Encoding instruction: pc=9432, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9434, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=9435, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9436, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=9437, opcode='PUSH32', imm=Some("d7f978f7e777fd7f2d7ffd5d35fcfbf7777a7f7ff76cf2fbfff6ffc2ec3df9b2") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=9470, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=9471, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9473, opcode='PUSH2', imm=Some("3396") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9476, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9478, opcode='CODECOPY', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 -DEBUG azoth_core::encoder: Encoding instruction: pc=9479, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9481, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=9482, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=9483, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9485, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=9486, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9487, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=9488, opcode='PUSH1', imm=Some("73") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9490, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9492, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=9493, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9495, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=9496, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9497, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=9498, opcode='PUSH1', imm=Some("84") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9500, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9501, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=9502, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9503, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=9504, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=9505, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9506, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=9507, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=9508, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9509, opcode='PUSH2', imm=Some("1b1e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9512, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9514, opcode='PUSH1', imm=Some("fe") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9516, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=9517, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9519, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9521, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9523, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=9524, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=9525, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=9526, opcode='PUSH2', imm=Some("1b16") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9529, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9532, opcode='DUP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 -DEBUG azoth_core::encoder: Encoding instruction: pc=9533, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=9534, opcode='PUSH2', imm=Some("1892") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9537, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9538, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9539, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=9540, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=9541, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=9542, opcode='PUSH2', imm=Some("2481") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9545, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9546, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9547, opcode='PUSH1', imm=Some("1f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9549, opcode='PUSH1', imm=Some("fb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9551, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=9552, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9554, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9556, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9558, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=9559, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=9560, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=9561, opcode='PUSH2', imm=Some("1b39") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9564, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9567, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=9568, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=9569, opcode='PUSH2', imm=Some("1892") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9572, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9573, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9574, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=9575, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=9576, opcode='PUSH2', imm=Some("26b6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9579, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=9580, opcode='PUSH2', imm=Some("1b5d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9583, opcode='PUSH2', imm=Some("1b58") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9586, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9589, opcode='PUSH2', imm=Some("1321") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9592, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9595, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9598, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=9599, opcode='DUP12', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b -DEBUG azoth_core::encoder: Encoding instruction: pc=9600, opcode='PUSH2', imm=Some("1892") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9603, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9604, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9605, opcode='PUSH2', imm=Some("0ced") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9608, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9609, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9610, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=9611, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=9612, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9613, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9614, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=9615, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=9616, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9617, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=9618, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=9619, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=9620, opcode='PUSH2', imm=Some("25a2") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9623, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=9624, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9625, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9626, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9627, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9628, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9629, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9630, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9631, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=9632, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9633, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9634, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9635, opcode='PUSH2', imm=Some("1b94") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9638, opcode='PUSH2', imm=Some("1b8d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9641, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=9642, opcode='PUSH2', imm=Some("1b88") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9645, opcode='CALLDATASIZE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATASIZE' -> byte 0x36 -DEBUG azoth_core::encoder: Encoding instruction: pc=9646, opcode='DUP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 -DEBUG azoth_core::encoder: Encoding instruction: pc=9647, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=9648, opcode='PUSH2', imm=Some("13ab") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9651, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9652, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9653, opcode='PUSH2', imm=Some("2854") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9656, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9657, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9658, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9659, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=9660, opcode='PUSH2', imm=Some("0cfb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9663, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9664, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9665, opcode='SWAP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 -DEBUG azoth_core::encoder: Encoding instruction: pc=9666, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=9667, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=9668, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9670, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=9671, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9672, opcode='KECCAK256', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'KECCAK256' -> byte 0x20 -DEBUG azoth_core::encoder: Encoding instruction: pc=9673, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=9674, opcode='PUSH2', imm=Some("2654") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9677, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=9678, opcode='PUSH1', imm=Some("03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9680, opcode='PUSH1', imm=Some("fe") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9682, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=9683, opcode='PUSH2', imm=Some("1bc2") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9686, opcode='PUSH2', imm=Some("1bb5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9689, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9692, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=9693, opcode='PUSH2', imm=Some("19fb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9696, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9697, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9698, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9700, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9702, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9704, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=9705, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=9706, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=9707, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=9708, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9709, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9710, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9711, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=9712, opcode='PUSH2', imm=Some("2654") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9715, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=9716, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=9717, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9718, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=9719, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9721, opcode='PUSH1', imm=Some("1f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9723, opcode='PUSH1', imm=Some("fb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9725, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=9726, opcode='PUSH2', imm=Some("1be0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9729, opcode='PUSH2', imm=Some("1bb5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9732, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9735, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=9736, opcode='PUSH2', imm=Some("19fb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9739, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9740, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9741, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=9742, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=9743, opcode='PUSH2', imm=Some("2698") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9746, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=9747, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9748, opcode='PUSH2', imm=Some("1bf1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9751, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=9752, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=9753, opcode='PUSH2', imm=Some("29de") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9756, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9757, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9758, opcode='PUSH1', imm=Some("11") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9760, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=9761, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=9762, opcode='PUSH2', imm=Some("265f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9765, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=9766, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9767, opcode='PUSH2', imm=Some("1c03") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9770, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=9771, opcode='PUSH2', imm=Some("2b70") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9774, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9775, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9776, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=9777, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=9778, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=9779, opcode='PUSH2', imm=Some("2654") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9782, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=9783, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=9784, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=9785, opcode='PUSH2', imm=Some("2648") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9788, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=9789, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=9790, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=9791, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9792, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=9793, opcode='SWAP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 -DEBUG azoth_core::encoder: Encoding instruction: pc=9794, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9795, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=9796, opcode='PUSH2', imm=Some("2590") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9799, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9800, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9801, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9802, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9803, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9804, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9805, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9806, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9807, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9808, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9810, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9811, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9812, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9813, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9814, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9815, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9816, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9817, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9818, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9819, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9820, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=9821, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9822, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9823, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9824, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9825, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=9826, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9827, opcode='PUSH1', imm=Some("02") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9829, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=9830, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=9831, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9832, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9833, opcode='PUSH2', imm=Some("268c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9836, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=9837, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=9838, opcode='DUP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 -DEBUG azoth_core::encoder: Encoding instruction: pc=9839, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=9840, opcode='PUSH2', imm=Some("1c4c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9843, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=9844, opcode='PUSH2', imm=Some("2a2a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9847, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9848, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9849, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=9850, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=9851, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=9852, opcode='PUSH2', imm=Some("2654") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9855, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=9856, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=9857, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=9858, opcode='PUSH2', imm=Some("2648") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9861, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=9862, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=9863, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=9864, opcode='PUSH2', imm=Some("263f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9867, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9868, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9869, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9870, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9871, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9872, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9873, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9874, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9875, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9876, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9877, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=9878, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9879, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9880, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9881, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=9882, opcode='PUSH2', imm=Some("1c85") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9885, opcode='PUSH2', imm=Some("1b58") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9888, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9891, opcode='PUSH2', imm=Some("1321") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9894, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9897, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9900, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=9901, opcode='PUSH2', imm=Some("19fb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9904, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9905, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9906, opcode='PUSH2', imm=Some("2613") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9909, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9910, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9911, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9913, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=9914, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=9915, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9916, opcode='PUSH2', imm=Some("258d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9919, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9920, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9921, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=9922, opcode='PUSH2', imm=Some("26c7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=9925, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=9926, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=9927, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=9928, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9930, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=9931, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=9935, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9937, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=9938, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=9939, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=9940, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9942, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9944, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=9945, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9946, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=9947, opcode='PUSH1', imm=Some("0f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9949, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9951, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=9952, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9953, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=9954, opcode='PUSH15', imm=Some("f3a78face89c5563a9c9bf82fc8cf2") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH15' -> byte 0x6e -DEBUG azoth_core::encoder: Added 15 immediate bytes for PUSH15 -DEBUG azoth_core::encoder: Encoding instruction: pc=9970, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9971, opcode='PUSH15', imm=Some("10ef57b92e2a40de5cfd36ef0897d3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH15' -> byte 0x6e -DEBUG azoth_core::encoder: Added 15 immediate bytes for PUSH15 -DEBUG azoth_core::encoder: Encoding instruction: pc=9987, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9988, opcode='PUSH1', imm=Some("8c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9990, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=9991, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9993, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=9994, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=9995, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=9996, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=9998, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=9999, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=10000, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10001, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=10002, opcode='PUSH2', imm=Some("2717") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10005, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=10006, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10007, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10008, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10010, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=10011, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=10015, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10017, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=10018, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=10019, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=10020, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10022, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10024, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=10025, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=10026, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=10027, opcode='PUSH1', imm=Some("1e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10029, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10031, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=10032, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=10033, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=10034, opcode='PUSH32', imm=Some("d50398ec946c62144a50fd022f9a507742bef4a1575c99bd837c0c164141fa99") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=10067, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10069, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=10070, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=10071, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=10072, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10074, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10075, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=10076, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10077, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=10078, opcode='PUSH2', imm=Some("2763") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10081, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=10082, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10083, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10084, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10086, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=10087, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=10091, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10093, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=10094, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=10095, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=10096, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10098, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10100, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=10101, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=10102, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=10103, opcode='PUSH1', imm=Some("14") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10105, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10107, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=10108, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=10109, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=10110, opcode='PUSH20', imm=Some("15dc9bdb99c81d1bdad95b8818dbdb9d1c9858dd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH20' -> byte 0x73 -DEBUG azoth_core::encoder: Added 20 immediate bytes for PUSH20 -DEBUG azoth_core::encoder: Encoding instruction: pc=10131, opcode='PUSH1', imm=Some("62") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10133, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=10134, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10136, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=10137, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=10138, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=10139, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10141, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10142, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=10143, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10144, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10145, opcode='PUSH1', imm=Some("14") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10147, opcode='PUSH2', imm=Some("14e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10150, opcode='SWAP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 -DEBUG azoth_core::encoder: Encoding instruction: pc=10151, opcode='SWAP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 -DEBUG azoth_core::encoder: Encoding instruction: pc=10152, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=10153, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10156, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=10157, opcode='PUSH2', imm=Some("1dfd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10160, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=10161, opcode='DUP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 -DEBUG azoth_core::encoder: Encoding instruction: pc=10162, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=10163, opcode='PUSH2', imm=Some("1d94") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10166, opcode='PUSH1', imm=Some("c0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10168, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10170, opcode='PUSH2', imm=Some("1d8c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10173, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10176, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10179, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=10180, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=10181, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=10182, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10185, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10186, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10187, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=10188, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=10189, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=10190, opcode='PUSH2', imm=Some("26c0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10193, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10194, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10195, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10197, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10199, opcode='PUSH2', imm=Some("1da9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10202, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10205, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10208, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=10209, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=10210, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=10211, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10214, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10215, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10216, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=10217, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=10218, opcode='PUSH2', imm=Some("2841") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10221, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=10222, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10223, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10226, opcode='PUSH2', imm=Some("1326") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10229, opcode='PUSH2', imm=Some("1321") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10232, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10235, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10238, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=10239, opcode='PUSH2', imm=Some("1dcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10242, opcode='SWAP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP9' -> byte 0x98 -DEBUG azoth_core::encoder: Encoding instruction: pc=10243, opcode='PUSH2', imm=Some("132b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10246, opcode='SWAP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP8' -> byte 0x97 -DEBUG azoth_core::encoder: Encoding instruction: pc=10247, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10250, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10251, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10252, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10253, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10254, opcode='PUSH2', imm=Some("1dda") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10257, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=10258, opcode='DUP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 -DEBUG azoth_core::encoder: Encoding instruction: pc=10259, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=10260, opcode='PUSH2', imm=Some("2c85") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10263, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10264, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10265, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=10266, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10267, opcode='PUSH2', imm=Some("1de8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10270, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=10271, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=10272, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=10273, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=10274, opcode='PUSH2', imm=Some("2710") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10277, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10278, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10279, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=10280, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=10281, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10283, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10285, opcode='PUSH1', imm=Some("a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10287, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=10288, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=10289, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10290, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=10291, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=10292, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10293, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=10294, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=10295, opcode='PUSH2', imm=Some("275c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10298, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10299, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10300, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10301, opcode='PUSH2', imm=Some("2fe1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10304, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10305, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10306, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10307, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10308, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10309, opcode='PUSH2', imm=Some("1e10") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10312, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10313, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10314, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10317, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10318, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10319, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10320, opcode='PUSH2', imm=Some("280d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10323, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10324, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10325, opcode='PUSH2', imm=Some("1e22") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10328, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=10329, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=10330, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=10331, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=10332, opcode='PUSH2', imm=Some("1ffa") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10335, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10336, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10337, opcode='PUSH2', imm=Some("1e32") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10340, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10343, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10346, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=10347, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=10348, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10351, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10352, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10353, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10354, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10356, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=10357, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=10358, opcode='PUSH1', imm=Some("80") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10360, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=10361, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=10362, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=10363, opcode='PUSH2', imm=Some("2889") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10366, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=10367, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10368, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10369, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10370, opcode='PUSH2', imm=Some("1928") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10373, opcode='PUSH2', imm=Some("21e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10376, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10377, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10378, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10379, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=10380, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=10381, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10382, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10383, opcode='PUSH1', imm=Some("b8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10385, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=10386, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=10387, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=10388, opcode='PUSH2', imm=Some("28f3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10391, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=10392, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10393, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10396, opcode='PUSH2', imm=Some("1e66") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10399, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10400, opcode='PUSH2', imm=Some("19d7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10403, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10404, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10405, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10406, opcode='PUSH2', imm=Some("1e70") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10409, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=10410, opcode='PUSH2', imm=Some("2229") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10413, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10414, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10415, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=10416, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=10417, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10418, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=10419, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=10420, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=10421, opcode='PUSH2', imm=Some("28c4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10424, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=10425, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10426, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10427, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10428, opcode='PUSH2', imm=Some("14e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10431, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10432, opcode='PUSH2', imm=Some("0ced") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10435, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10436, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10437, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=10438, opcode='PUSH2', imm=Some("1ea2") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10441, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10444, opcode='PUSH2', imm=Some("1e9c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10447, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10449, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=10450, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10453, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=10454, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10457, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10458, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10459, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=10460, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10463, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10464, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10465, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=10466, opcode='BYTE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a -DEBUG azoth_core::encoder: Encoding instruction: pc=10467, opcode='PUSH2', imm=Some("1eae") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10470, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=10471, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=10472, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10475, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10476, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10477, opcode='MSTORE8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 -DEBUG azoth_core::encoder: Encoding instruction: pc=10478, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=10479, opcode='PUSH2', imm=Some("28b1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10482, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10483, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10484, opcode='PUSH1', imm=Some("c0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10486, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=10487, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=10488, opcode='PUSH2', imm=Some("2991") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10491, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=10492, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10495, opcode='PUSH2', imm=Some("1ec9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10498, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10499, opcode='PUSH2', imm=Some("19c4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10502, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10503, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10504, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=10505, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10506, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=10507, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10508, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=10509, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=10510, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=10511, opcode='PUSH2', imm=Some("2963") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10514, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=10515, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10516, opcode='PUSH2', imm=Some("1ede") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10519, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=10520, opcode='PUSH2', imm=Some("2229") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10523, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10524, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10525, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=10526, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=10527, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10528, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=10529, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=10530, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=10531, opcode='PUSH2', imm=Some("2936") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10534, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=10535, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10536, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10537, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10538, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10539, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10542, opcode='PUSH2', imm=Some("14e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10545, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=10546, opcode='PUSH2', imm=Some("0ced") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10549, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10550, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10551, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=10552, opcode='PUSH2', imm=Some("1f12") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10555, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10558, opcode='PUSH2', imm=Some("1e9c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10561, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10563, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=10564, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10567, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=10568, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10571, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=10572, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10575, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10576, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10577, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=10578, opcode='BYTE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a -DEBUG azoth_core::encoder: Encoding instruction: pc=10579, opcode='PUSH2', imm=Some("1f1e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10582, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=10583, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=10584, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10587, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10588, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10589, opcode='MSTORE8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 -DEBUG azoth_core::encoder: Encoding instruction: pc=10590, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=10591, opcode='PUSH2', imm=Some("291f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10594, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10595, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10596, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=10597, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10599, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10600, opcode='PUSH1', imm=Some("08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10602, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=10603, opcode='PUSH2', imm=Some("1f4b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10606, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10609, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10612, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10615, opcode='PUSH2', imm=Some("1f45") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10618, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=10619, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10622, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=10623, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10626, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10627, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10628, opcode='DUP12', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b -DEBUG azoth_core::encoder: Encoding instruction: pc=10629, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10632, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10633, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10634, opcode='OR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 -DEBUG azoth_core::encoder: Encoding instruction: pc=10635, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=10636, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=10637, opcode='PUSH2', imm=Some("290b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10640, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10641, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10642, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10643, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10644, opcode='PUSH2', imm=Some("1f5f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10647, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=10648, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=10649, opcode='PUSH2', imm=Some("3139") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10652, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10653, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10654, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=10655, opcode='PUSH2', imm=Some("1f69") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10658, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=10659, opcode='PUSH2', imm=Some("2229") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10662, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10663, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10664, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10665, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=10666, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10667, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=10668, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=10669, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=10670, opcode='PUSH2', imm=Some("29b8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10673, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=10674, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10675, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10676, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10677, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10678, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10679, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10680, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10681, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=10682, opcode='PUSH2', imm=Some("1f8d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10685, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10688, opcode='PUSH2', imm=Some("1e9c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10691, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10693, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=10694, opcode='DUP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 -DEBUG azoth_core::encoder: Encoding instruction: pc=10695, opcode='PUSH2', imm=Some("0cfb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10698, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10699, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10700, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=10701, opcode='BYTE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a -DEBUG azoth_core::encoder: Encoding instruction: pc=10702, opcode='PUSH2', imm=Some("1f99") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10705, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=10706, opcode='DUP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 -DEBUG azoth_core::encoder: Encoding instruction: pc=10707, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10710, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10711, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10712, opcode='MSTORE8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 -DEBUG azoth_core::encoder: Encoding instruction: pc=10713, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=10714, opcode='PUSH2', imm=Some("29aa") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10717, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10718, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10719, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=10720, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10721, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10722, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=10723, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=10724, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=10725, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=10726, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=10727, opcode='PUSH2', imm=Some("2a0f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10730, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=10731, opcode='PUSH2', imm=Some("1fb6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10734, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=10735, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=10736, opcode='PUSH2', imm=Some("3139") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10739, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10740, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10741, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=10742, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=10743, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=10744, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10745, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=10746, opcode='PUSH2', imm=Some("0cda") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10749, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=10750, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10751, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=10752, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=10753, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=10754, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=10755, opcode='PUSH2', imm=Some("0cda") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10758, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=10759, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10761, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=10762, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10763, opcode='PUSH2', imm=Some("29e1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10766, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10767, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10768, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10769, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10770, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10771, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10772, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10773, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10774, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=10775, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10777, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=10778, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10779, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=10780, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=10781, opcode='DIV', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DIV' -> byte 0x04 -DEBUG azoth_core::encoder: Encoding instruction: pc=10782, opcode='PUSH1', imm=Some("02") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10784, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=10785, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10786, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=10787, opcode='OR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 -DEBUG azoth_core::encoder: Encoding instruction: pc=10788, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=10789, opcode='PUSH2', imm=Some("0cda") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10792, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=10793, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10794, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10795, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=10796, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=10797, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=10798, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10799, opcode='PUSH2', imm=Some("1ffa") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10802, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=10803, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=10804, opcode='PUSH2', imm=Some("2854") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10807, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10808, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10809, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=10810, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10811, opcode='PUSH2', imm=Some("2019") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10814, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10816, opcode='PUSH2', imm=Some("2010") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10819, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10822, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10825, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=10826, opcode='PUSH2', imm=Some("19fb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10829, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10830, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10831, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=10832, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=10833, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=10834, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10835, opcode='PUSH2', imm=Some("3269") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10838, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10839, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10840, opcode='SWAP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP8' -> byte 0x97 -DEBUG azoth_core::encoder: Encoding instruction: pc=10841, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=10842, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10843, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=10844, opcode='PUSH2', imm=Some("2af9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10847, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=10848, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10849, opcode='PUSH2', imm=Some("202d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10852, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10853, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=10854, opcode='DUP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 -DEBUG azoth_core::encoder: Encoding instruction: pc=10855, opcode='PUSH2', imm=Some("0cfb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10858, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10859, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10860, opcode='PUSH2', imm=Some("2037") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10863, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=10864, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=10865, opcode='PUSH2', imm=Some("2a14") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10868, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10869, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10870, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=10871, opcode='PUSH2', imm=Some("2a8a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10874, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=10875, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10876, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10877, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10878, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10879, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10880, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10881, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10882, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10883, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=10884, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10885, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=10886, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10887, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=10888, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10889, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10890, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10891, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=10892, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=10893, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10895, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=10896, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=10897, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=10898, opcode='PUSH2', imm=Some("2ae7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10901, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=10902, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10903, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10904, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10905, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10906, opcode='PUSH2', imm=Some("2aa4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10909, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=10910, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10911, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=10912, opcode='PUSH2', imm=Some("2a7b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10915, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10916, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10917, opcode='PUSH2', imm=Some("2079") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10920, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=10921, opcode='PUSH2', imm=Some("2073") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10924, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10925, opcode='PUSH2', imm=Some("0cfb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10928, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10929, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10930, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10931, opcode='PUSH2', imm=Some("2854") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10934, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10935, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10936, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10937, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10939, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=10940, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=10941, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10942, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=10943, opcode='KECCAK256', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'KECCAK256' -> byte 0x20 -DEBUG azoth_core::encoder: Encoding instruction: pc=10944, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10945, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10947, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=10948, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=10949, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10950, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=10951, opcode='KECCAK256', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'KECCAK256' -> byte 0x20 -DEBUG azoth_core::encoder: Encoding instruction: pc=10952, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=10953, opcode='PUSH2', imm=Some("2ad5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10956, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=10957, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=10958, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=10959, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=10960, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=10961, opcode='PUSH2', imm=Some("2a9e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10964, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10965, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10966, opcode='PUSH2', imm=Some("20a2") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10969, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10970, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=10971, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10972, opcode='PUSH2', imm=Some("0cfb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10975, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10976, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10977, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=10979, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=10980, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=10981, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=10982, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10983, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10984, opcode='PUSH2', imm=Some("20b3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10987, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=10988, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=10989, opcode='PUSH2', imm=Some("33cf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=10992, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=10993, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=10994, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=10995, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=10996, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=10997, opcode='PUSH2', imm=Some("2a96") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11000, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11001, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11002, opcode='PUSH2', imm=Some("20cc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11005, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=11006, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=11007, opcode='SWAP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 -DEBUG azoth_core::encoder: Encoding instruction: pc=11008, opcode='SWAP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 -DEBUG azoth_core::encoder: Encoding instruction: pc=11009, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11010, opcode='PUSH2', imm=Some("049e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11013, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=11014, opcode='PUSH2', imm=Some("33cf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11017, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11018, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11019, opcode='PUSH2', imm=Some("2b63") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11022, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=11023, opcode='PUSH2', imm=Some("20dd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11026, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=11027, opcode='PUSH2', imm=Some("2073") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11030, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=11031, opcode='PUSH2', imm=Some("0cfb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11034, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11035, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11036, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11037, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11038, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=11039, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=11040, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11042, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=11043, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=11044, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=11045, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=11046, opcode='PUSH2', imm=Some("2b43") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11049, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=11050, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11051, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11053, opcode='PUSH2', imm=Some("20fd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11056, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=11057, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11058, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=11059, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=11060, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11061, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=11062, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11063, opcode='PUSH2', imm=Some("0cfb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11066, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11067, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11068, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=11069, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11071, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=11072, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=11073, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11074, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11075, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11076, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=11077, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=11078, opcode='PUSH2', imm=Some("2b57") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11081, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=11082, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11084, opcode='PUSH2', imm=Some("20fd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11087, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=11088, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11089, opcode='KECCAK256', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'KECCAK256' -> byte 0x20 -DEBUG azoth_core::encoder: Encoding instruction: pc=11090, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=11091, opcode='PUSH2', imm=Some("2b34") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11094, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11095, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11096, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11097, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11098, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11099, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11100, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=11101, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11102, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=11103, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11104, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=11105, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11106, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11107, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11108, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11109, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11110, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11111, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11112, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11113, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=11114, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11115, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=11116, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11117, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=11118, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11119, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11120, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11121, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=11122, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11123, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=11124, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=11125, opcode='PUSH2', imm=Some("2140") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11128, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=11129, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=11130, opcode='PUSH2', imm=Some("2a14") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11133, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11134, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11135, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=11136, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=11137, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=11138, opcode='PUSH2', imm=Some("2c28") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11141, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=11142, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11143, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11146, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11149, opcode='PUSH2', imm=Some("2162") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11152, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=11153, opcode='PUSH2', imm=Some("215c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11156, opcode='DUP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 -DEBUG azoth_core::encoder: Encoding instruction: pc=11157, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11159, opcode='SHR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c -DEBUG azoth_core::encoder: Encoding instruction: pc=11160, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11161, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11162, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11163, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11164, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11167, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11168, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11169, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11171, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=11172, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=11173, opcode='PUSH2', imm=Some("2c1f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11176, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=11177, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11179, opcode='SHR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c -DEBUG azoth_core::encoder: Encoding instruction: pc=11180, opcode='PUSH1', imm=Some("0f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11182, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=11183, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=11184, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11185, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11186, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=11187, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=11188, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11189, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11191, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=11192, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=11193, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=11194, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=11195, opcode='PUSH2', imm=Some("2bff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11198, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=11199, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11200, opcode='PUSH2', imm=Some("218b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11203, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=11204, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11205, opcode='PUSH2', imm=Some("2854") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11208, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11209, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11210, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11211, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=11212, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=11213, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=11214, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=11215, opcode='PUSH2', imm=Some("2bf4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11218, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=11219, opcode='PUSH2', imm=Some("20fd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11222, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=11223, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11225, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=11226, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=11227, opcode='PUSH2', imm=Some("2bea") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11230, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=11231, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11233, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=11234, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11235, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11236, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=11237, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=11238, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11241, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11242, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11243, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11245, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11246, opcode='KECCAK256', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'KECCAK256' -> byte 0x20 -DEBUG azoth_core::encoder: Encoding instruction: pc=11247, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=11248, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11251, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11252, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11253, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11254, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11255, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11256, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=11257, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11258, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=11259, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11260, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=11261, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11262, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11263, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11264, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11265, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=11266, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11268, opcode='PUSH2', imm=Some("21d5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11271, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=11272, opcode='PUSH2', imm=Some("132b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11275, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11277, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=11278, opcode='DUP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 -DEBUG azoth_core::encoder: Encoding instruction: pc=11279, opcode='PUSH2', imm=Some("3139") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11282, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11283, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11284, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=11285, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11286, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=11287, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=11288, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=11289, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11290, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11291, opcode='PUSH2', imm=Some("2bb4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11294, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11295, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11296, opcode='PUSH1', imm=Some("0f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11298, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=11299, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=11300, opcode='PUSH2', imm=Some("2bb0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11303, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11304, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11305, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=11306, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11307, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11308, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=11309, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=11310, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=11311, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=11312, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=11313, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11314, opcode='PUSH1', imm=Some("10") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11316, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=11317, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=11318, opcode='PUSH2', imm=Some("2c6b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11321, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=11322, opcode='PUSH2', imm=Some("2205") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11325, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=11326, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11327, opcode='PUSH2', imm=Some("2854") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11330, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11331, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11332, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11333, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11335, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=11336, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=11337, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=11338, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11339, opcode='KECCAK256', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'KECCAK256' -> byte 0x20 -DEBUG azoth_core::encoder: Encoding instruction: pc=11340, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11341, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11343, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=11344, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=11345, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=11346, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11347, opcode='KECCAK256', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'KECCAK256' -> byte 0x20 -DEBUG azoth_core::encoder: Encoding instruction: pc=11348, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=11349, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=11350, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=11351, opcode='PUSH2', imm=Some("2c62") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11354, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=11355, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11357, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=11358, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11359, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=11360, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11361, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11362, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11363, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=11364, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=11365, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11366, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=11367, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11368, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=11369, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11370, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11371, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11372, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11373, opcode='PUSH2', imm=Some("223e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11376, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=11377, opcode='PUSH2', imm=Some("132b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11380, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11382, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=11383, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=11384, opcode='PUSH2', imm=Some("3139") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11387, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11388, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11389, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=11390, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11391, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=11392, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11393, opcode='PUSH2', imm=Some("2c31") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11396, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11397, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11398, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=11399, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11400, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=11401, opcode='PUSH2', imm=Some("2255") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11404, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=11405, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=11406, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=11407, opcode='PUSH2', imm=Some("1ffa") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11410, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11411, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11412, opcode='PUSH1', imm=Some("94") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11414, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11416, opcode='PUSH2', imm=Some("226a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11419, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11422, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11425, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=11426, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=11427, opcode='DUP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP8' -> byte 0x87 -DEBUG azoth_core::encoder: Encoding instruction: pc=11428, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11431, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11432, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11433, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=11434, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=11435, opcode='PUSH2', imm=Some("2cf4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11438, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=11439, opcode='PUSH2', imm=Some("2278") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11442, opcode='PUSH2', imm=Some("2207") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11445, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11446, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11447, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=11448, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=11449, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11450, opcode='PUSH1', imm=Some("14") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11452, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=11453, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=11454, opcode='PUSH2', imm=Some("2ccb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11457, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=11458, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11459, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11460, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11461, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=11462, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11463, opcode='PUSH1', imm=Some("15") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11465, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11466, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11467, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11468, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=11469, opcode='PUSH2', imm=Some("22a3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11472, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11475, opcode='PUSH2', imm=Some("199c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11478, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11480, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=11481, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11484, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=11485, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11488, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11489, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11490, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=11491, opcode='BYTE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a -DEBUG azoth_core::encoder: Encoding instruction: pc=11492, opcode='PUSH2', imm=Some("22af") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11495, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=11496, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=11497, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11500, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11501, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11502, opcode='MSTORE8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 -DEBUG azoth_core::encoder: Encoding instruction: pc=11503, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11504, opcode='PUSH2', imm=Some("2cb9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11507, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11508, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11509, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11511, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=11512, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=11516, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11518, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=11519, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=11520, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=11521, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11523, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11525, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=11526, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11527, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=11528, opcode='PUSH1', imm=Some("1c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11530, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11532, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=11533, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11534, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=11535, opcode='PUSH32', imm=Some("015961d9f9b9f05f2e5ca2fc01435f9e7b4bc5e92e825f30855340bd20dd92ba") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=11568, opcode='PUSH2', imm=Some("3aa7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11571, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11572, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=11573, opcode='PUSH32', imm=Some("483717b895d0947f4f38c68e64302cbe290795c94bec3c5fe13a2eda20dd5813") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=11606, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=11607, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11609, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=11610, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11611, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=11612, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11614, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11615, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=11616, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11617, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=11618, opcode='PUSH2', imm=Some("2d67") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11621, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=11622, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11623, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11624, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11626, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=11627, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=11631, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11633, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=11634, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=11635, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=11636, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11638, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11640, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=11641, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11642, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=11643, opcode='PUSH1', imm=Some("12") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11645, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11647, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=11648, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11649, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=11650, opcode='PUSH18', imm=Some("0496e76616c696420746f7069637320524c5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH18' -> byte 0x71 -DEBUG azoth_core::encoder: Added 18 immediate bytes for PUSH18 -DEBUG azoth_core::encoder: Encoding instruction: pc=11669, opcode='PUSH1', imm=Some("74") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11671, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=11672, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11674, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=11675, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11676, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=11677, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11679, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11680, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=11681, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11682, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=11683, opcode='PUSH2', imm=Some("2da8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11686, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=11687, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11688, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11689, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11691, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=11692, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=11696, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11698, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=11699, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=11700, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=11701, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11703, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11705, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=11706, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11707, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=11708, opcode='PUSH1', imm=Some("15") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11710, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11712, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=11713, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11714, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=11715, opcode='PUSH32', imm=Some("1dd33e28b1d9432353170da20676d4626a9c9e4d0fb51a2bbb05ef285e6dc0ab") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=11748, opcode='PUSH2', imm=Some("873c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11751, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11752, opcode='PUSH4', imm=Some("504dbcab") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=11757, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11758, opcode='PUSH4', imm=Some("fa6b6338") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=11763, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11764, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11765, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=11766, opcode='PUSH8', imm=Some("47194acd5891b72d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=11775, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11776, opcode='PUSH8', imm=Some("27729041c4c136a1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=11785, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11786, opcode='PUSH8', imm=Some("2471bd531c712cc8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=11795, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=11796, opcode='PUSH8', imm=Some("418eafd67f31b492") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH8' -> byte 0x67 -DEBUG azoth_core::encoder: Added 8 immediate bytes for PUSH8 -DEBUG azoth_core::encoder: Encoding instruction: pc=11805, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=11806, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=11807, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11809, opcode='PUSH2', imm=Some("33b6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11812, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11814, opcode='CODECOPY', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 -DEBUG azoth_core::encoder: Encoding instruction: pc=11815, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11817, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=11818, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11819, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=11820, opcode='PUSH2', imm=Some("58e9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11823, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11824, opcode='PUSH2', imm=Some("65e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11827, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11828, opcode='PUSH32', imm=Some("12478dabdac12bcb3486df777b7f7ee778eda36dffaffb57ef7afded7fceef77") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=11861, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=11862, opcode='PUSH16', imm=Some("e2bcda79036f3be04f406990e92120ca") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=11879, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11880, opcode='PUSH16', imm=Some("ac1bbc213f69fc9ef5dbdda2617e7495") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=11897, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=11898, opcode='PUSH16', imm=Some("0678c94f932cf5dc4c4ead627ba313d2") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH16' -> byte 0x6f -DEBUG azoth_core::encoder: Added 16 immediate bytes for PUSH16 -DEBUG azoth_core::encoder: Encoding instruction: pc=11915, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=11916, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=11917, opcode='PUSH1', imm=Some("58") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11919, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=11920, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11922, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=11923, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11924, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=11925, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11927, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11928, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=11929, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11930, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=11931, opcode='PUSH2', imm=Some("2ea0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=11934, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=11935, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=11936, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=11937, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11939, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=11940, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=11944, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11946, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=11947, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=11948, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=11949, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11951, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11953, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=11954, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11955, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=11956, opcode='PUSH1', imm=Some("13") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11958, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11960, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=11961, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=11962, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=11963, opcode='PUSH32', imm=Some("a54cbea4b7996710ce239be689f6f02ac5cf93a727f842fde304b19781c0939a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=11996, opcode='PUSH1', imm=Some("0e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=11998, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=11999, opcode='DIV', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DIV' -> byte 0x04 -DEBUG azoth_core::encoder: Encoding instruction: pc=12000, opcode='PUSH2', imm=Some("c649") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12003, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12004, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=12005, opcode='PUSH2', imm=Some("37af") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12008, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=12009, opcode='PUSH4', imm=Some("e29621a9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=12014, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=12015, opcode='PUSH4', imm=Some("3e229d07") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=12020, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=12021, opcode='PUSH4', imm=Some("bfe915f4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=12026, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=12027, opcode='PUSH4', imm=Some("e290610a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=12032, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=12033, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=12034, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12036, opcode='PUSH2', imm=Some("33d6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12039, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12041, opcode='CODECOPY', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 -DEBUG azoth_core::encoder: Encoding instruction: pc=12042, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12044, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=12045, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=12046, opcode='PUSH32', imm=Some("0bce9fe731af875ca1028b22c0b3b0d9e162472e3aae7c12a8244ff87ad19963") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=12079, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12080, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=12081, opcode='PUSH19', imm=Some("0889840400008c0c862a4401ad0601a00c8868") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH19' -> byte 0x72 -DEBUG azoth_core::encoder: Added 19 immediate bytes for PUSH19 -DEBUG azoth_core::encoder: Encoding instruction: pc=12101, opcode='OR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 -DEBUG azoth_core::encoder: Encoding instruction: pc=12102, opcode='PUSH1', imm=Some("6b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12104, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=12105, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12107, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=12108, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=12109, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=12110, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12112, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12113, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=12114, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12115, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=12116, opcode='PUSH2', imm=Some("2f59") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12119, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=12120, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12121, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12122, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12124, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=12125, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=12129, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12131, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=12132, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=12133, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=12134, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12136, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12138, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=12139, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=12140, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=12141, opcode='PUSH1', imm=Some("14") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12143, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12145, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=12146, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=12147, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=12148, opcode='PUSH20', imm=Some("2b456ec4052ae788e73485f61410a2dc5131e5cc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH20' -> byte 0x73 -DEBUG azoth_core::encoder: Added 20 immediate bytes for PUSH20 -DEBUG azoth_core::encoder: Encoding instruction: pc=12169, opcode='PUSH1', imm=Some("60") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12171, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=12172, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12174, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=12175, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=12176, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=12177, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12179, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12180, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=12181, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12182, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=12183, opcode='PUSH2', imm=Some("2f9c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12186, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=12187, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12188, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12189, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12191, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=12192, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=12196, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12198, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=12199, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=12200, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=12201, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12203, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12205, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=12206, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=12207, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=12208, opcode='PUSH1', imm=Some("18") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12210, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12212, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=12213, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=12214, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=12215, opcode='PUSH32', imm=Some("130436046c83d9f1f517e2dfc7d3aaef733fe2e5b7816cfc7a596fbd6818e25d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=12248, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12250, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=12251, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=12252, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=12253, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12255, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12256, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=12257, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12258, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=12259, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=12260, opcode='PUSH2', imm=Some("2533") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12263, opcode='PUSH2', imm=Some("2540") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12266, opcode='SWAP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 -DEBUG azoth_core::encoder: Encoding instruction: pc=12267, opcode='PUSH2', imm=Some("2520") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12270, opcode='PUSH2', imm=Some("2514") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12273, opcode='PUSH2', imm=Some("2514") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12276, opcode='PUSH2', imm=Some("250d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12279, opcode='PUSH2', imm=Some("2506") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12282, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=12283, opcode='PUSH2', imm=Some("24ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12286, opcode='PUSH32', imm=Some("6ef929568df1644db4e158347e1bc6d54a95d3f8b1e2508b147aad2689a469c8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=12319, opcode='PUSH1', imm=Some("02") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12321, opcode='MUL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MUL' -> byte 0x02 -DEBUG azoth_core::encoder: Encoding instruction: pc=12322, opcode='PUSH2', imm=Some("352a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12325, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=12326, opcode='PUSH4', imm=Some("e66abb55") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH4' -> byte 0x63 -DEBUG azoth_core::encoder: Added 4 immediate bytes for PUSH4 -DEBUG azoth_core::encoder: Encoding instruction: pc=12331, opcode='XOR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'XOR' -> byte 0x18 -DEBUG azoth_core::encoder: Encoding instruction: pc=12332, opcode='PUSH2', imm=Some("24f9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12335, opcode='DUP15', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP15' -> byte 0x8e -DEBUG azoth_core::encoder: Encoding instruction: pc=12336, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=12337, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12339, opcode='PUSH2', imm=Some("253a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12342, opcode='SWAP16', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP16' -> byte 0x9f -DEBUG azoth_core::encoder: Encoding instruction: pc=12343, opcode='PUSH2', imm=Some("24cd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12346, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12349, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12352, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=12353, opcode='PUSH2', imm=Some("24c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12356, opcode='PUSH1', imm=Some("c0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12358, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12360, opcode='PUSH2', imm=Some("24be") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12363, opcode='DUP16', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP16' -> byte 0x8f -DEBUG azoth_core::encoder: Encoding instruction: pc=12364, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12367, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=12368, opcode='SWAP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP11' -> byte 0x9a -DEBUG azoth_core::encoder: Encoding instruction: pc=12369, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12372, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=12373, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=12374, opcode='SWAP15', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP15' -> byte 0x9e -DEBUG azoth_core::encoder: Encoding instruction: pc=12375, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12378, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12379, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12380, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=12381, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=12382, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=12383, opcode='PUSH2', imm=Some("2d60") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12386, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12387, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12388, opcode='DUP12', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b -DEBUG azoth_core::encoder: Encoding instruction: pc=12389, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=12390, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12393, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12394, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12395, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=12396, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=12397, opcode='PUSH2', imm=Some("312f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12400, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=12401, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=12402, opcode='PUSH2', imm=Some("132b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12405, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12408, opcode='PUSH2', imm=Some("1326") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12411, opcode='PUSH2', imm=Some("1321") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12414, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12417, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12420, opcode='PUSH2', imm=Some("24f1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12423, opcode='SWAP8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP8' -> byte 0x97 -DEBUG azoth_core::encoder: Encoding instruction: pc=12424, opcode='DUP14', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP14' -> byte 0x8d -DEBUG azoth_core::encoder: Encoding instruction: pc=12425, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=12426, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12429, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12430, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12431, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=12432, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=12433, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=12434, opcode='PUSH2', imm=Some("348d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12437, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12438, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12439, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=12440, opcode='PUSH2', imm=Some("2da1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12443, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12444, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12445, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=12446, opcode='DUP13', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP13' -> byte 0x8c -DEBUG azoth_core::encoder: Encoding instruction: pc=12447, opcode='PUSH2', imm=Some("2082") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12450, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12451, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12452, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=12453, opcode='DUP12', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b -DEBUG azoth_core::encoder: Encoding instruction: pc=12454, opcode='PUSH2', imm=Some("2082") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12457, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12458, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12459, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=12460, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=12461, opcode='PUSH2', imm=Some("348d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12464, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12465, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12466, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12468, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12470, opcode='PUSH1', imm=Some("a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12472, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=12473, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=12474, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=12475, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12476, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12477, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12478, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12480, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12482, opcode='PUSH1', imm=Some("a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12484, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=12485, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=12486, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12487, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=12488, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=12489, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=12490, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=12491, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=12492, opcode='PUSH2', imm=Some("2e99") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12495, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12496, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12497, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=12498, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=12499, opcode='PUSH2', imm=Some("2082") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12502, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12503, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12504, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=12505, opcode='PUSH2', imm=Some("34ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12508, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12509, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12510, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=12511, opcode='PUSH2', imm=Some("254f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12514, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12516, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=12517, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=12518, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=12519, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=12520, opcode='PUSH2', imm=Some("2f52") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12523, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12524, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12525, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=12526, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=12527, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=12528, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12529, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=12530, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=12531, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=12532, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=12533, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=12534, opcode='PUSH2', imm=Some("311b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12537, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=12538, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12540, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12541, opcode='PUSH1', imm=Some("08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12543, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=12544, opcode='PUSH2', imm=Some("2575") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12547, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12550, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12553, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12556, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=12557, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=12558, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12561, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12562, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12563, opcode='OR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 -DEBUG azoth_core::encoder: Encoding instruction: pc=12564, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=12565, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=12566, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=12567, opcode='PUSH2', imm=Some("30f0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12570, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12571, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12572, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12573, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=12574, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=12575, opcode='PUSH2', imm=Some("258d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12578, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=12579, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=12580, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=12581, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=12582, opcode='PUSH2', imm=Some("2f95") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12585, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12586, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12587, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12589, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12590, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12591, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12592, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=12593, opcode='PUSH2', imm=Some("24f1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12596, opcode='DUP14', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP14' -> byte 0x8d -DEBUG azoth_core::encoder: Encoding instruction: pc=12597, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12600, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12601, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12602, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12603, opcode='PUSH2', imm=Some("25a9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12606, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=12607, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=12608, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=12609, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=12610, opcode='PUSH2', imm=Some("1ffa") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12613, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12614, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12615, opcode='PUSH2', imm=Some("25b9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12618, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12621, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12624, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=12625, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=12626, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12629, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12630, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12631, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=12632, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12634, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=12635, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=12636, opcode='PUSH1', imm=Some("80") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12638, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=12639, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=12640, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=12641, opcode='PUSH2', imm=Some("316d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12644, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=12645, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=12646, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=12647, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=12648, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=12649, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12651, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12652, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12653, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12654, opcode='PUSH1', imm=Some("b8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12656, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=12657, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=12658, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=12659, opcode='PUSH2', imm=Some("3188") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12662, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=12663, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=12664, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=12665, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=12666, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12669, opcode='PUSH2', imm=Some("1326") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12672, opcode='PUSH2', imm=Some("14e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12675, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=12676, opcode='PUSH2', imm=Some("19d7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12679, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12680, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12681, opcode='PUSH1', imm=Some("c0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12683, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=12684, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=12685, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=12686, opcode='PUSH2', imm=Some("31f4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12689, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=12690, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=12691, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=12692, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12695, opcode='PUSH2', imm=Some("2602") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12698, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=12699, opcode='PUSH2', imm=Some("19c4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12702, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12703, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12704, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12705, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=12706, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=12707, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=12708, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=12709, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12710, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=12711, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=12712, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=12713, opcode='PUSH2', imm=Some("31bc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12716, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=12717, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=12718, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=12719, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=12720, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12721, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12724, opcode='PUSH2', imm=Some("14e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12727, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=12728, opcode='PUSH2', imm=Some("0ced") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12731, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12732, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12733, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12734, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=12735, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=12736, opcode='PUSH2', imm=Some("262e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12739, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12741, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=12742, opcode='PUSH1', imm=Some("08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12744, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=12745, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12746, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12747, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12748, opcode='PUSH2', imm=Some("264d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12751, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12754, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12757, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12760, opcode='PUSH2', imm=Some("2647") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12763, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=12764, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12767, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=12768, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12771, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12772, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12773, opcode='DUP9', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP9' -> byte 0x88 -DEBUG azoth_core::encoder: Encoding instruction: pc=12774, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12777, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12778, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12779, opcode='OR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 -DEBUG azoth_core::encoder: Encoding instruction: pc=12780, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=12781, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=12782, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=12783, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12784, opcode='PUSH2', imm=Some("31a5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12787, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12788, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12789, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12791, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=12792, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=12793, opcode='PUSH2', imm=Some("320d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12796, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=12797, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=12798, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=12799, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12802, opcode='PUSH2', imm=Some("1326") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12805, opcode='PUSH2', imm=Some("14e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12808, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=12809, opcode='PUSH2', imm=Some("19b1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12812, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12813, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12814, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=12815, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12818, opcode='PUSH2', imm=Some("267d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12821, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=12822, opcode='PUSH2', imm=Some("199e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12825, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12826, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12827, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12828, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=12829, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=12830, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=12831, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=12832, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12833, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=12834, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=12835, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=12836, opcode='PUSH2', imm=Some("3237") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12839, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=12840, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=12841, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=12842, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=12843, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12844, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12847, opcode='PUSH2', imm=Some("14e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12850, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=12851, opcode='PUSH2', imm=Some("0ced") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12854, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12855, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12856, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12857, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=12858, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=12859, opcode='PUSH2', imm=Some("26a9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12862, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12864, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=12865, opcode='PUSH1', imm=Some("08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12867, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=12868, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12869, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12870, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12871, opcode='PUSH2', imm=Some("26c2") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12874, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12877, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12880, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12883, opcode='PUSH2', imm=Some("2647") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12886, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=12887, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12890, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=12891, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12894, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12895, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12896, opcode='OR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 -DEBUG azoth_core::encoder: Encoding instruction: pc=12897, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=12898, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=12899, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=12900, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12901, opcode='PUSH2', imm=Some("3220") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12904, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12905, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12906, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12907, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=12908, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=12909, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=12910, opcode='PUSH2', imm=Some("33cd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12913, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=12914, opcode='PUSH2', imm=Some("26e3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12917, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12920, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12923, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=12924, opcode='PUSH2', imm=Some("19fb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12927, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12928, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12929, opcode='PUSH1', imm=Some("10") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12931, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=12932, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=12933, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=12934, opcode='PUSH2', imm=Some("334f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12937, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=12938, opcode='PUSH2', imm=Some("2706") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12941, opcode='PUSH2', imm=Some("2701") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12944, opcode='PUSH2', imm=Some("26fc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12947, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=12948, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=12949, opcode='PUSH2', imm=Some("2a14") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12952, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12953, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12954, opcode='PUSH2', imm=Some("1230") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12957, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12958, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12959, opcode='PUSH2', imm=Some("2229") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12962, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12963, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12964, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=12965, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12967, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=12968, opcode='PUSH1', imm=Some("0f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12970, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12972, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=12973, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=12974, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=12975, opcode='BYTE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a -DEBUG azoth_core::encoder: Encoding instruction: pc=12976, opcode='PUSH2', imm=Some("271b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12979, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=12980, opcode='PUSH2', imm=Some("19fb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12983, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=12984, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12985, opcode='MSTORE8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 -DEBUG azoth_core::encoder: Encoding instruction: pc=12986, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=12988, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=12989, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=12990, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=12991, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=12992, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=12993, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=12994, opcode='PUSH2', imm=Some("334a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=12997, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=12998, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=12999, opcode='PUSH2', imm=Some("275a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13002, opcode='PUSH2', imm=Some("274a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13005, opcode='PUSH2', imm=Some("2741") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13008, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13011, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13014, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13016, opcode='SWAP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 -DEBUG azoth_core::encoder: Encoding instruction: pc=13017, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=13018, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13021, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13022, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13023, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13025, opcode='SHR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c -DEBUG azoth_core::encoder: Encoding instruction: pc=13026, opcode='PUSH1', imm=Some("0f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13028, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=13029, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=13030, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13031, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13032, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13034, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=13035, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13037, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13039, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13041, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=13042, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=13043, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=13044, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=13045, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=13046, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13047, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13048, opcode='PUSH2', imm=Some("2773") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13051, opcode='PUSH2', imm=Some("2769") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13054, opcode='PUSH2', imm=Some("26fc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13057, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=13058, opcode='PUSH2', imm=Some("2a14") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13061, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13062, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13063, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=13064, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=13065, opcode='BYTE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a -DEBUG azoth_core::encoder: Encoding instruction: pc=13066, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=13067, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=13068, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13071, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13072, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13073, opcode='MSTORE8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 -DEBUG azoth_core::encoder: Encoding instruction: pc=13074, opcode='PUSH2', imm=Some("279a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13077, opcode='PUSH1', imm=Some("0f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13079, opcode='PUSH2', imm=Some("2789") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13082, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13085, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13088, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=13089, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=13090, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13093, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13094, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13095, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=13096, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13098, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=13099, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13101, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13103, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13105, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=13106, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=13107, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=13108, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=13109, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=13110, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13111, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13112, opcode='PUSH2', imm=Some("27a6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13115, opcode='PUSH2', imm=Some("2769") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13118, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=13119, opcode='PUSH2', imm=Some("2a14") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13122, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13123, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13124, opcode='MSTORE8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 -DEBUG azoth_core::encoder: Encoding instruction: pc=13125, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=13126, opcode='PUSH2', imm=Some("32bc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13129, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13130, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13131, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13132, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=13133, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13134, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13135, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13136, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13137, opcode='PUSH2', imm=Some("27c8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13140, opcode='PUSH2', imm=Some("2701") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13143, opcode='PUSH2', imm=Some("27c3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13146, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=13147, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=13148, opcode='PUSH2', imm=Some("2a14") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13151, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13152, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13153, opcode='PUSH2', imm=Some("1221") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13156, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13157, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13158, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13160, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13161, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=13162, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=13163, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=13164, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=13165, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=13166, opcode='PUSH2', imm=Some("334a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13169, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=13170, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=13171, opcode='PUSH2', imm=Some("27ed") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13174, opcode='PUSH2', imm=Some("274a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13177, opcode='PUSH2', imm=Some("2741") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13180, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13183, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13186, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13188, opcode='SWAP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 -DEBUG azoth_core::encoder: Encoding instruction: pc=13189, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=13190, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13193, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13194, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13195, opcode='PUSH2', imm=Some("2801") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13198, opcode='PUSH2', imm=Some("2769") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13201, opcode='PUSH2', imm=Some("27fc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13204, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=13205, opcode='PUSH2', imm=Some("1230") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13208, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13209, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13210, opcode='PUSH2', imm=Some("2a14") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13213, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13214, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13215, opcode='MSTORE8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 -DEBUG azoth_core::encoder: Encoding instruction: pc=13216, opcode='PUSH2', imm=Some("2817") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13219, opcode='PUSH1', imm=Some("0f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13221, opcode='PUSH2', imm=Some("2789") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13224, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13227, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13230, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=13231, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=13232, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13235, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13236, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13237, opcode='PUSH2', imm=Some("2829") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13240, opcode='PUSH2', imm=Some("2769") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13243, opcode='PUSH2', imm=Some("1495") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13246, opcode='PUSH2', imm=Some("27fc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13249, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=13250, opcode='PUSH2', imm=Some("1230") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13253, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13254, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13255, opcode='MSTORE8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 -DEBUG azoth_core::encoder: Encoding instruction: pc=13256, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=13257, opcode='PUSH2', imm=Some("3368") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13260, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13261, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13262, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13263, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13264, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=13265, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=13266, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=13267, opcode='PUSH2', imm=Some("2840") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13270, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=13271, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=13272, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=13273, opcode='PUSH2', imm=Some("0cfb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13276, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13277, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13278, opcode='PUSH2', imm=Some("284a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13281, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=13282, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=13283, opcode='PUSH2', imm=Some("2a14") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13286, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13287, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13288, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=13289, opcode='PUSH2', imm=Some("3486") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13292, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=13293, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=13294, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13295, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=13296, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=13297, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=13298, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=13299, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=13300, opcode='PUSH2', imm=Some("347d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13303, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=13304, opcode='PUSH2', imm=Some("286d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13307, opcode='PUSH2', imm=Some("2867") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13310, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=13311, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=13312, opcode='PUSH2', imm=Some("0cfb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13315, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13316, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13317, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13319, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=13320, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=13321, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13322, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13323, opcode='PUSH2', imm=Some("345f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13326, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=13327, opcode='PUSH2', imm=Some("2896") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13330, opcode='PUSH2', imm=Some("2741") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13333, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13336, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13339, opcode='PUSH2', imm=Some("2890") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13342, opcode='PUSH2', imm=Some("288a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13345, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=13346, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=13347, opcode='PUSH2', imm=Some("0cfb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13350, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13351, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13352, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13354, opcode='SHR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHR' -> byte 0x1c -DEBUG azoth_core::encoder: Encoding instruction: pc=13355, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=13356, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13357, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13358, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=13359, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13362, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13363, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13364, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13366, opcode='PUSH2', imm=Some("28ab") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13369, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13372, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13375, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13378, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=13379, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=13380, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13383, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13384, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13385, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=13386, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=13387, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=13388, opcode='PUSH2', imm=Some("3457") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13391, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=13392, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13394, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=13395, opcode='PUSH2', imm=Some("33ee") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13398, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13399, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13400, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13401, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13402, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13403, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13404, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=13405, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=13406, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13407, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13408, opcode='PUSH1', imm=Some("0f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13410, opcode='PUSH2', imm=Some("28da") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13413, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13416, opcode='PUSH2', imm=Some("1370") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13419, opcode='PUSH2', imm=Some("2890") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13422, opcode='PUSH2', imm=Some("288a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13425, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=13426, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=13427, opcode='PUSH2', imm=Some("0cfb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13430, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13431, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13432, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=13433, opcode='PUSH2', imm=Some("3433") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13436, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13437, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13438, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13439, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13440, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13441, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13442, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13444, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=13445, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13446, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13447, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13448, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13449, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13450, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=13451, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=13452, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13453, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13454, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=13455, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=13456, opcode='PUSH1', imm=Some("05") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13458, opcode='PUSH1', imm=Some("fd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13460, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=13461, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=13462, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13464, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13466, opcode='PUSH1', imm=Some("f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13468, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=13469, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=13470, opcode='NOT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'NOT' -> byte 0x19 -DEBUG azoth_core::encoder: Encoding instruction: pc=13471, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=13472, opcode='PUSH2', imm=Some("290e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13475, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=13476, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=13477, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=13478, opcode='DUP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP7' -> byte 0x86 -DEBUG azoth_core::encoder: Encoding instruction: pc=13479, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13482, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13483, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13484, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=13485, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=13486, opcode='SUB', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SUB' -> byte 0x03 -DEBUG azoth_core::encoder: Encoding instruction: pc=13487, opcode='PUSH2', imm=Some("34ba") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13490, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=13491, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=13492, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13494, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=13495, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=13496, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=13497, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13498, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13499, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13501, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=13502, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=13506, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13508, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=13509, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=13510, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=13511, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13513, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13515, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=13516, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=13517, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=13518, opcode='PUSH1', imm=Some("17") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13520, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13522, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=13523, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=13524, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=13525, opcode='PUSH32', imm=Some("e7d57c48a7e98c8f60d4a8cfd2f7f15715ff0d1d166f6040cca78faba83b5bdc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=13558, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13560, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=13561, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=13562, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=13563, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13565, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=13566, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=13567, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13568, opcode='PUSH2', imm=Some("296d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13571, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=13572, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=13573, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=13574, opcode='PUSH2', imm=Some("1ffa") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13577, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13578, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13579, opcode='PUSH2', imm=Some("297e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13582, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13585, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13588, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=13589, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=13590, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=13591, opcode='PUSH2', imm=Some("18a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13594, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13595, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13596, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=13597, opcode='PUSH1', imm=Some("ff") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13599, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=13600, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=13601, opcode='PUSH1', imm=Some("80") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13603, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=13604, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=13605, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=13606, opcode='PUSH2', imm=Some("3535") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13609, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=13610, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13611, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13612, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13613, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13614, opcode='PUSH2', imm=Some("1928") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13617, opcode='PUSH2', imm=Some("21e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13620, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13621, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13622, opcode='PUSH1', imm=Some("b8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13624, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=13625, opcode='SWAP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 -DEBUG azoth_core::encoder: Encoding instruction: pc=13626, opcode='SWAP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 -DEBUG azoth_core::encoder: Encoding instruction: pc=13627, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=13628, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=13629, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=13630, opcode='SWAP7', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP7' -> byte 0x96 -DEBUG azoth_core::encoder: Encoding instruction: pc=13631, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=13632, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=13633, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=13634, opcode='PUSH2', imm=Some("359c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13637, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=13638, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13639, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13642, opcode='PUSH2', imm=Some("29b5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13645, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=13646, opcode='PUSH2', imm=Some("19d7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13649, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13650, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13651, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=13652, opcode='PUSH2', imm=Some("29bf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13655, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=13656, opcode='PUSH2', imm=Some("2229") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13659, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13660, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13661, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=13662, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=13663, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13664, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=13665, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=13666, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=13667, opcode='PUSH2', imm=Some("3573") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13670, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=13671, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13672, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13673, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13674, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13675, opcode='PUSH2', imm=Some("14e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13678, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=13679, opcode='PUSH2', imm=Some("0ced") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13682, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13683, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13684, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=13685, opcode='PUSH2', imm=Some("29ec") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13688, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13691, opcode='PUSH2', imm=Some("199c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13694, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13696, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=13697, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13700, opcode='DUP10', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP10' -> byte 0x89 -DEBUG azoth_core::encoder: Encoding instruction: pc=13701, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13704, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13705, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13706, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=13707, opcode='BYTE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a -DEBUG azoth_core::encoder: Encoding instruction: pc=13708, opcode='PUSH2', imm=Some("29f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13711, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=13712, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=13713, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13716, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13717, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13718, opcode='MSTORE8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 -DEBUG azoth_core::encoder: Encoding instruction: pc=13719, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=13720, opcode='PUSH2', imm=Some("355f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13723, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13724, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13725, opcode='PUSH1', imm=Some("c0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13727, opcode='GT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'GT' -> byte 0x11 -DEBUG azoth_core::encoder: Encoding instruction: pc=13728, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=13729, opcode='PUSH2', imm=Some("3636") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13732, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=13733, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13736, opcode='PUSH2', imm=Some("2a13") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13739, opcode='SWAP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP2' -> byte 0x91 -DEBUG azoth_core::encoder: Encoding instruction: pc=13740, opcode='PUSH2', imm=Some("19c4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13743, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13744, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13745, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=13746, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=13747, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=13748, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=13749, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13750, opcode='DUP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP4' -> byte 0x83 -DEBUG azoth_core::encoder: Encoding instruction: pc=13751, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=13752, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=13753, opcode='PUSH2', imm=Some("360e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13756, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=13757, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13758, opcode='PUSH2', imm=Some("2a29") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13761, opcode='DUP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP5' -> byte 0x84 -DEBUG azoth_core::encoder: Encoding instruction: pc=13762, opcode='PUSH2', imm=Some("2229") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13765, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13766, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13767, opcode='SWAP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP6' -> byte 0x95 -DEBUG azoth_core::encoder: Encoding instruction: pc=13768, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=13769, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13770, opcode='DUP6', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP6' -> byte 0x85 -DEBUG azoth_core::encoder: Encoding instruction: pc=13771, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=13772, opcode='LT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'LT' -> byte 0x10 -DEBUG azoth_core::encoder: Encoding instruction: pc=13773, opcode='PUSH2', imm=Some("35e1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13776, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=13777, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13778, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13779, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13780, opcode='POP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'POP' -> byte 0x50 -DEBUG azoth_core::encoder: Encoding instruction: pc=13781, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=13782, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13785, opcode='PUSH2', imm=Some("14e0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13788, opcode='SWAP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP3' -> byte 0x92 -DEBUG azoth_core::encoder: Encoding instruction: pc=13789, opcode='PUSH2', imm=Some("0ced") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13792, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13793, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13794, opcode='DUP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP1' -> byte 0x80 -DEBUG azoth_core::encoder: Encoding instruction: pc=13795, opcode='PUSH2', imm=Some("2a5e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13798, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13801, opcode='PUSH2', imm=Some("199c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13804, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13806, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=13807, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13810, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=13811, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13814, opcode='DUP12', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b -DEBUG azoth_core::encoder: Encoding instruction: pc=13815, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13818, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13819, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13820, opcode='PUSH0', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'PUSH0' -> byte 0x5f -DEBUG azoth_core::encoder: Encoding instruction: pc=13821, opcode='BYTE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a -DEBUG azoth_core::encoder: Encoding instruction: pc=13822, opcode='PUSH2', imm=Some("2a6a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13825, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=13826, opcode='DUP12', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP12' -> byte 0x8b -DEBUG azoth_core::encoder: Encoding instruction: pc=13827, opcode='PUSH2', imm=Some("1a08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13830, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13831, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13832, opcode='MSTORE8', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE8' -> byte 0x53 -DEBUG azoth_core::encoder: Encoding instruction: pc=13833, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=13834, opcode='PUSH2', imm=Some("35c9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13837, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13838, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13839, opcode='SWAP4', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP4' -> byte 0x93 -DEBUG azoth_core::encoder: Encoding instruction: pc=13840, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13842, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=13843, opcode='PUSH1', imm=Some("08") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13845, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=13846, opcode='PUSH2', imm=Some("2a91") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13849, opcode='PUSH2', imm=Some("0498") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13852, opcode='PUSH2', imm=Some("131b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13855, opcode='PUSH2', imm=Some("12c6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13858, opcode='PUSH2', imm=Some("1a48") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13861, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=13862, opcode='PUSH2', imm=Some("17b7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13865, opcode='DUP11', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP11' -> byte 0x8a -DEBUG azoth_core::encoder: Encoding instruction: pc=13866, opcode='PUSH2', imm=Some("0cdf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13869, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13870, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13871, opcode='OR', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'OR' -> byte 0x17 -DEBUG azoth_core::encoder: Encoding instruction: pc=13872, opcode='SWAP5', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP5' -> byte 0x94 -DEBUG azoth_core::encoder: Encoding instruction: pc=13873, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=13874, opcode='PUSH2', imm=Some("35b5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13877, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=13878, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13879, opcode='PUSH1', imm=Some("40") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13881, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=13882, opcode='PUSH3', imm=Some("461bcd") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH3' -> byte 0x62 -DEBUG azoth_core::encoder: Added 3 immediate bytes for PUSH3 -DEBUG azoth_core::encoder: Encoding instruction: pc=13886, opcode='PUSH1', imm=Some("e5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13888, opcode='SHL', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SHL' -> byte 0x1b -DEBUG azoth_core::encoder: Encoding instruction: pc=13889, opcode='DUP2', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP2' -> byte 0x81 -DEBUG azoth_core::encoder: Encoding instruction: pc=13890, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=13891, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13893, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13895, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=13896, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=13897, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=13898, opcode='PUSH1', imm=Some("1e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13900, opcode='PUSH1', imm=Some("24") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13902, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=13903, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=13904, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=13905, opcode='PUSH32', imm=Some("9c573f5db4f42053e5e13be8f9bd35b0bc33acf45f3cbbd1911652f356d540f3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=13938, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13940, opcode='PUSH2', imm=Some("33f6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=13943, opcode='PUSH1', imm=Some("20") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13945, opcode='CODECOPY', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CODECOPY' -> byte 0x39 -DEBUG azoth_core::encoder: Encoding instruction: pc=13946, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13948, opcode='MLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MLOAD' -> byte 0x51 -DEBUG azoth_core::encoder: Encoding instruction: pc=13949, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=13950, opcode='PUSH32', imm=Some("57f9f9e7e774ed6e2b7ff47fe97e67af6561767b3d266f6f7db46ff9737600d8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH32' -> byte 0x7f -DEBUG azoth_core::encoder: Added 32 immediate bytes for PUSH32 -DEBUG azoth_core::encoder: Encoding instruction: pc=13983, opcode='AND', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'AND' -> byte 0x16 -DEBUG azoth_core::encoder: Encoding instruction: pc=13984, opcode='PUSH1', imm=Some("44") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13986, opcode='DUP3', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'DUP3' -> byte 0x82 -DEBUG azoth_core::encoder: Encoding instruction: pc=13987, opcode='ADD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ADD' -> byte 0x01 -DEBUG azoth_core::encoder: Encoding instruction: pc=13988, opcode='MSTORE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'MSTORE' -> byte 0x52 -DEBUG azoth_core::encoder: Encoding instruction: pc=13989, opcode='PUSH1', imm=Some("64") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13991, opcode='SWAP1', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SWAP1' -> byte 0x90 -DEBUG azoth_core::encoder: Encoding instruction: pc=13992, opcode='REVERT', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'REVERT' -> byte 0xfd -DEBUG azoth_core::encoder: Encoding instruction: pc=13993, opcode='INVALID', imm=Some("fe") - WARN azoth_core::encoder: Encoding INVALID opcode at pc=13993 -DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe -DEBUG azoth_core::encoder: Encoding instruction: pc=13994, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13995, opcode='INVALID', imm=Some("fe") - WARN azoth_core::encoder: Encoding INVALID opcode at pc=13995 -DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe -DEBUG azoth_core::encoder: Encoding instruction: pc=13996, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=13997, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=13999, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14001, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14002, opcode='PUSH2', imm=Some("36aa") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14005, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14006, opcode='PUSH2', imm=Some("012b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14009, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14010, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14011, opcode='PUSH2', imm=Some("36ac") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14014, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14015, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14016, opcode='INVALID', imm=Some("fe") - WARN azoth_core::encoder: Encoding INVALID opcode at pc=14016 -DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe -DEBUG azoth_core::encoder: Encoding instruction: pc=14017, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14018, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14020, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14022, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14023, opcode='PUSH2', imm=Some("36bf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14026, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14027, opcode='PUSH1', imm=Some("ef") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14029, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14030, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14031, opcode='PUSH2', imm=Some("36c1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14034, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14035, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14036, opcode='INVALID', imm=Some("fe") - WARN azoth_core::encoder: Encoding INVALID opcode at pc=14036 -DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe -DEBUG azoth_core::encoder: Encoding instruction: pc=14037, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14038, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14040, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14042, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14043, opcode='PUSH2', imm=Some("36d3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14046, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14047, opcode='PUSH2', imm=Some("010d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14050, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14051, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14052, opcode='PUSH2', imm=Some("36d5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14055, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14056, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14057, opcode='INVALID', imm=Some("fe") - WARN azoth_core::encoder: Encoding INVALID opcode at pc=14057 -DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe -DEBUG azoth_core::encoder: Encoding instruction: pc=14058, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14059, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14061, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14063, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14064, opcode='PUSH2', imm=Some("36e8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14067, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14068, opcode='PUSH1', imm=Some("f4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14070, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14071, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14072, opcode='PUSH2', imm=Some("36ea") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14075, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14076, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14077, opcode='INVALID', imm=Some("fe") - WARN azoth_core::encoder: Encoding INVALID opcode at pc=14077 -DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe -DEBUG azoth_core::encoder: Encoding instruction: pc=14078, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14079, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14081, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14083, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14084, opcode='PUSH2', imm=Some("36fc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14087, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14088, opcode='PUSH1', imm=Some("f9") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14090, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14091, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14092, opcode='PUSH2', imm=Some("36fe") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14095, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14096, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14097, opcode='INVALID', imm=Some("fe") - WARN azoth_core::encoder: Encoding INVALID opcode at pc=14097 -DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe -DEBUG azoth_core::encoder: Encoding instruction: pc=14098, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14099, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14101, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14103, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14104, opcode='PUSH2', imm=Some("3710") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14107, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14108, opcode='PUSH2', imm=Some("0144") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14111, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14112, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14113, opcode='PUSH2', imm=Some("3712") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14116, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14117, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14118, opcode='INVALID', imm=Some("fe") - WARN azoth_core::encoder: Encoding INVALID opcode at pc=14118 -DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe -DEBUG azoth_core::encoder: Encoding instruction: pc=14119, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14120, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14122, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14124, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14125, opcode='PUSH2', imm=Some("3725") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14128, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14129, opcode='PUSH2', imm=Some("0108") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14132, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14133, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14134, opcode='PUSH2', imm=Some("3727") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14137, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14138, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14139, opcode='INVALID', imm=Some("fe") - WARN azoth_core::encoder: Encoding INVALID opcode at pc=14139 -DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe -DEBUG azoth_core::encoder: Encoding instruction: pc=14140, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14141, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14143, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14145, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14146, opcode='PUSH2', imm=Some("373a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14149, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14150, opcode='PUSH2', imm=Some("013a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14153, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14154, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14155, opcode='PUSH2', imm=Some("373c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14158, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14159, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14160, opcode='INVALID', imm=Some("fe") - WARN azoth_core::encoder: Encoding INVALID opcode at pc=14160 -DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe -DEBUG azoth_core::encoder: Encoding instruction: pc=14161, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14162, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14164, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14166, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14167, opcode='PUSH2', imm=Some("374f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14170, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14171, opcode='PUSH2', imm=Some("013f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14174, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14175, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14176, opcode='PUSH2', imm=Some("3751") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14179, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14180, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14181, opcode='INVALID', imm=Some("fe") - WARN azoth_core::encoder: Encoding INVALID opcode at pc=14181 -DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe -DEBUG azoth_core::encoder: Encoding instruction: pc=14182, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14183, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14185, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14187, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14188, opcode='PUSH2', imm=Some("3764") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14191, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14192, opcode='PUSH2', imm=Some("0130") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14195, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14196, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14197, opcode='PUSH2', imm=Some("3766") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14200, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14201, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14202, opcode='INVALID', imm=Some("fe") - WARN azoth_core::encoder: Encoding INVALID opcode at pc=14202 -DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe -DEBUG azoth_core::encoder: Encoding instruction: pc=14203, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14204, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14206, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14208, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14209, opcode='PUSH2', imm=Some("3779") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14212, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14213, opcode='PUSH2', imm=Some("0126") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14216, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14217, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14218, opcode='PUSH2', imm=Some("377b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14221, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14222, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14223, opcode='INVALID', imm=Some("fe") - WARN azoth_core::encoder: Encoding INVALID opcode at pc=14223 -DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe -DEBUG azoth_core::encoder: Encoding instruction: pc=14224, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14225, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14227, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14229, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14230, opcode='PUSH2', imm=Some("378e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14233, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14234, opcode='PUSH2', imm=Some("0121") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14237, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14238, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14239, opcode='PUSH2', imm=Some("3790") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14242, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14243, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14244, opcode='INVALID', imm=Some("fe") - WARN azoth_core::encoder: Encoding INVALID opcode at pc=14244 -DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe -DEBUG azoth_core::encoder: Encoding instruction: pc=14245, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14246, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14248, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14250, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14251, opcode='PUSH2', imm=Some("37a3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14254, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14255, opcode='PUSH2', imm=Some("0103") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14258, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14259, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14260, opcode='PUSH2', imm=Some("37a5") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14263, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14264, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14265, opcode='INVALID', imm=Some("fe") - WARN azoth_core::encoder: Encoding INVALID opcode at pc=14265 -DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe -DEBUG azoth_core::encoder: Encoding instruction: pc=14266, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14267, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14269, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14271, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14272, opcode='PUSH2', imm=Some("37b8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14275, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14276, opcode='PUSH1', imm=Some("fe") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14278, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14279, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14280, opcode='PUSH2', imm=Some("37ba") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14283, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14284, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14285, opcode='INVALID', imm=Some("fe") - WARN azoth_core::encoder: Encoding INVALID opcode at pc=14285 -DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe -DEBUG azoth_core::encoder: Encoding instruction: pc=14286, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14287, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14289, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14291, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14292, opcode='PUSH2', imm=Some("37cc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14295, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14296, opcode='PUSH2', imm=Some("0117") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14299, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14300, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14301, opcode='PUSH2', imm=Some("37ce") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14304, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14305, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14306, opcode='INVALID', imm=Some("fe") - WARN azoth_core::encoder: Encoding INVALID opcode at pc=14306 -DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe -DEBUG azoth_core::encoder: Encoding instruction: pc=14307, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14308, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14310, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14312, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14313, opcode='PUSH2', imm=Some("37e1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14316, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14317, opcode='PUSH2', imm=Some("0135") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14320, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14321, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14322, opcode='PUSH2', imm=Some("37e3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14325, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14326, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14327, opcode='INVALID', imm=Some("fe") - WARN azoth_core::encoder: Encoding INVALID opcode at pc=14327 -DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe -DEBUG azoth_core::encoder: Encoding instruction: pc=14328, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14329, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14331, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14333, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14334, opcode='PUSH2', imm=Some("37f6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14337, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14338, opcode='PUSH2', imm=Some("011c") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14341, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14342, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14343, opcode='PUSH2', imm=Some("37f8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14346, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14347, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14348, opcode='INVALID', imm=Some("fe") - WARN azoth_core::encoder: Encoding INVALID opcode at pc=14348 -DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe -DEBUG azoth_core::encoder: Encoding instruction: pc=14349, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14350, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14352, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14354, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14355, opcode='PUSH2', imm=Some("380b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14358, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14359, opcode='PUSH2', imm=Some("0112") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14362, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14363, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14364, opcode='PUSH2', imm=Some("380d") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14367, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14368, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14369, opcode='INVALID', imm=Some("fe") - WARN azoth_core::encoder: Encoding INVALID opcode at pc=14369 -DEBUG azoth_core::encoder: Preserved INVALID opcode from immediate as byte 0xfe -DEBUG azoth_core::encoder: Encoding instruction: pc=14370, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14371, opcode='PUSH1', imm=Some("01") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14373, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14375, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14376, opcode='PUSH2', imm=Some("3820") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14379, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14380, opcode='PUSH1', imm=Some("ea") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14382, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14383, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14384, opcode='PUSH2', imm=Some("3822") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14387, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14388, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14389, opcode='PUSH2', imm=Some("bf6a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14392, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=14393, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=14394, opcode='PUSH2', imm=Some("3720") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14397, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14398, opcode='PUSH2', imm=Some("3710") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14401, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14402, opcode='PUSH2', imm=Some("3720") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14405, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14406, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14407, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14409, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=14410, opcode='PUSH1', imm=Some("02") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14412, opcode='BYTE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a -DEBUG azoth_core::encoder: Encoding instruction: pc=14413, opcode='PUSH1', imm=Some("c0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14415, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14416, opcode='PUSH2', imm=Some("3858") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14419, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14420, opcode='PUSH2', imm=Some("374f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14423, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14424, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14425, opcode='PUSH2', imm=Some("375f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14428, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14429, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14430, opcode='PUSH2', imm=Some("fead") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14433, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=14434, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=14435, opcode='PUSH2', imm=Some("374a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14438, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14439, opcode='PUSH2', imm=Some("373a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14442, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14443, opcode='PUSH2', imm=Some("374a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14446, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14447, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14448, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14450, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=14451, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14453, opcode='BYTE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a -DEBUG azoth_core::encoder: Encoding instruction: pc=14454, opcode='PUSH1', imm=Some("30") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14456, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14457, opcode='PUSH2', imm=Some("3881") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14460, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14461, opcode='PUSH2', imm=Some("37e1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14464, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14465, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14466, opcode='PUSH2', imm=Some("37f1") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14469, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14470, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14471, opcode='PUSH2', imm=Some("e6fe") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14474, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=14475, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=14476, opcode='PUSH2', imm=Some("3774") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14479, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14480, opcode='PUSH2', imm=Some("3764") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14483, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14484, opcode='PUSH2', imm=Some("3774") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14487, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14488, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14489, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14491, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=14492, opcode='PUSH1', imm=Some("02") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14494, opcode='BYTE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a -DEBUG azoth_core::encoder: Encoding instruction: pc=14495, opcode='PUSH1', imm=Some("d6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14497, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14498, opcode='PUSH2', imm=Some("38aa") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14501, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14502, opcode='PUSH2', imm=Some("36aa") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14505, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14506, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14507, opcode='PUSH2', imm=Some("36ba") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14510, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14511, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14512, opcode='PUSH2', imm=Some("d662") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14515, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=14516, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=14517, opcode='PUSH2', imm=Some("3789") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14520, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14521, opcode='PUSH2', imm=Some("3779") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14524, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14525, opcode='PUSH2', imm=Some("3789") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14528, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14529, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14530, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14532, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=14533, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14535, opcode='BYTE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a -DEBUG azoth_core::encoder: Encoding instruction: pc=14536, opcode='PUSH1', imm=Some("80") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14538, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14539, opcode='PUSH2', imm=Some("38d3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14542, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14543, opcode='PUSH2', imm=Some("378e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14546, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14547, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14548, opcode='PUSH2', imm=Some("379e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14551, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14552, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14553, opcode='PUSH2', imm=Some("a0dc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14556, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=14557, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=14558, opcode='PUSH2', imm=Some("3806") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14561, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14562, opcode='PUSH2', imm=Some("37f6") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14565, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14566, opcode='PUSH2', imm=Some("3806") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14569, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14570, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14571, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14573, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=14574, opcode='PUSH1', imm=Some("02") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14576, opcode='BYTE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a -DEBUG azoth_core::encoder: Encoding instruction: pc=14577, opcode='PUSH1', imm=Some("ab") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14579, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14580, opcode='PUSH2', imm=Some("38fc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14583, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14584, opcode='PUSH2', imm=Some("37cc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14587, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14588, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14589, opcode='PUSH2', imm=Some("37dc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14592, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14593, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14594, opcode='PUSH2', imm=Some("5a55") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14597, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=14598, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=14599, opcode='PUSH2', imm=Some("381b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14602, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14603, opcode='PUSH2', imm=Some("380b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14606, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14607, opcode='PUSH2', imm=Some("381b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14610, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14611, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14612, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14614, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=14615, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14617, opcode='BYTE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a -DEBUG azoth_core::encoder: Encoding instruction: pc=14618, opcode='PUSH1', imm=Some("99") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14620, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14621, opcode='PUSH2', imm=Some("3925") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14624, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14625, opcode='PUSH2', imm=Some("36d3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14628, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14629, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14630, opcode='PUSH2', imm=Some("36e3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14633, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14634, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14635, opcode='PUSH2', imm=Some("7b02") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14638, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=14639, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=14640, opcode='PUSH2', imm=Some("3735") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14643, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14644, opcode='PUSH2', imm=Some("3725") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14647, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14648, opcode='PUSH2', imm=Some("3735") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14651, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14652, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14653, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14655, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=14656, opcode='PUSH1', imm=Some("02") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14658, opcode='BYTE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a -DEBUG azoth_core::encoder: Encoding instruction: pc=14659, opcode='PUSH1', imm=Some("6a") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14661, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14662, opcode='PUSH2', imm=Some("394e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14665, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14666, opcode='PUSH2', imm=Some("37a3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14669, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14670, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14671, opcode='PUSH2', imm=Some("37b3") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14674, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14675, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14676, opcode='PUSH2', imm=Some("f46e") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14679, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=14680, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=14681, opcode='PUSH2', imm=Some("37c7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14684, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14685, opcode='PUSH2', imm=Some("37b8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14688, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14689, opcode='PUSH2', imm=Some("37c7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14692, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14693, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14694, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14696, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=14697, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14699, opcode='BYTE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a -DEBUG azoth_core::encoder: Encoding instruction: pc=14700, opcode='PUSH1', imm=Some("d4") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14702, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14703, opcode='PUSH2', imm=Some("3977") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14706, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14707, opcode='PUSH2', imm=Some("36fc") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14710, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14711, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14712, opcode='PUSH2', imm=Some("370b") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14715, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14716, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14717, opcode='PUSH2', imm=Some("a9cb") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14720, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=14721, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=14722, opcode='PUSH2', imm=Some("36f7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14725, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14726, opcode='PUSH2', imm=Some("36e8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14729, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14730, opcode='PUSH2', imm=Some("36f7") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14733, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14734, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14735, opcode='PUSH1', imm=Some("00") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14737, opcode='CALLDATALOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'CALLDATALOAD' -> byte 0x35 -DEBUG azoth_core::encoder: Encoding instruction: pc=14738, opcode='PUSH1', imm=Some("02") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14740, opcode='BYTE', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'BYTE' -> byte 0x1a -DEBUG azoth_core::encoder: Encoding instruction: pc=14741, opcode='PUSH1', imm=Some("04") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH1' -> byte 0x60 -DEBUG azoth_core::encoder: Added 1 immediate bytes for PUSH1 -DEBUG azoth_core::encoder: Encoding instruction: pc=14743, opcode='EQ', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'EQ' -> byte 0x14 -DEBUG azoth_core::encoder: Encoding instruction: pc=14744, opcode='PUSH2', imm=Some("39a0") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14747, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14748, opcode='PUSH2', imm=Some("36bf") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14751, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14752, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14753, opcode='PUSH2', imm=Some("36ce") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14756, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14757, opcode='JUMPDEST', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPDEST' -> byte 0x5b -DEBUG azoth_core::encoder: Encoding instruction: pc=14758, opcode='PUSH2', imm=Some("bcb8") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14761, opcode='SLOAD', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'SLOAD' -> byte 0x54 -DEBUG azoth_core::encoder: Encoding instruction: pc=14762, opcode='ISZERO', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'ISZERO' -> byte 0x15 -DEBUG azoth_core::encoder: Encoding instruction: pc=14763, opcode='PUSH2', imm=Some("382f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14766, opcode='JUMPI', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMPI' -> byte 0x57 -DEBUG azoth_core::encoder: Encoding instruction: pc=14767, opcode='PUSH2', imm=Some("3820") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14770, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 -DEBUG azoth_core::encoder: Encoding instruction: pc=14771, opcode='PUSH2', imm=Some("382f") -DEBUG azoth_core::encoder: Encoding opcode 'PUSH2' -> byte 0x61 -DEBUG azoth_core::encoder: Added 2 immediate bytes for PUSH2 -DEBUG azoth_core::encoder: Encoding instruction: pc=14774, opcode='JUMP', imm=None -DEBUG azoth_core::encoder: Encoding opcode 'JUMP' -> byte 0x56 - WARN azoth_core::encoder: Encoded 20 unknown opcodes as raw bytes. The resulting bytecode preserves the original bytes but these may represent invalid EVM instructions. -DEBUG azoth_core::encoder: Successfully encoded 7358 instructions into 14775 bytes -DEBUG azoth_transform::obfuscator: Encoded to 14775 bytes -DEBUG azoth_transform::obfuscator: Validating obfuscated runtime jump targets (14775 bytes) -DEBUG heimdall_disassembler::core: fetching target bytecode took 1.320241ms -DEBUG heimdall_disassembler::core: disassembly took 4.208521ms - INFO heimdall_disassembler::core: disassembled 14775 bytes successfully -DEBUG heimdall_disassembler::core: disassembly took 5.608224ms -DEBUG azoth_core::validator: Validator found 650 JUMPDESTs -DEBUG azoth_core::validator: [1] PC 0x11 -DEBUG azoth_core::validator: [2] PC 0xea -DEBUG azoth_core::validator: [3] PC 0xef -DEBUG azoth_core::validator: [4] PC 0xf4 -DEBUG azoth_core::validator: [5] PC 0xf9 -DEBUG azoth_core::validator: [6] PC 0xfe -DEBUG azoth_core::validator: [7] PC 0x103 -DEBUG azoth_core::validator: [8] PC 0x108 -DEBUG azoth_core::validator: [9] PC 0x10d -DEBUG azoth_core::validator: [10] PC 0x112 -DEBUG azoth_core::validator: [11] PC 0x117 -DEBUG azoth_core::validator: [12] PC 0x11c -DEBUG azoth_core::validator: [13] PC 0x121 -DEBUG azoth_core::validator: [14] PC 0x126 -DEBUG azoth_core::validator: [15] PC 0x12b -DEBUG azoth_core::validator: [16] PC 0x130 -DEBUG azoth_core::validator: [17] PC 0x135 -DEBUG azoth_core::validator: [18] PC 0x13a -DEBUG azoth_core::validator: [19] PC 0x13f -DEBUG azoth_core::validator: [20] PC 0x144 -DEBUG azoth_core::validator: [21] PC 0x188 -DEBUG azoth_core::validator: [22] PC 0x194 -DEBUG azoth_core::validator: [23] PC 0x198 -DEBUG azoth_core::validator: [24] PC 0x1c0 -DEBUG azoth_core::validator: [25] PC 0x1fa -DEBUG azoth_core::validator: [26] PC 0x21c -DEBUG azoth_core::validator: [27] PC 0x239 -DEBUG azoth_core::validator: [28] PC 0x25e -DEBUG azoth_core::validator: [29] PC 0x267 -DEBUG azoth_core::validator: [30] PC 0x299 -DEBUG azoth_core::validator: [31] PC 0x2a1 -DEBUG azoth_core::validator: [32] PC 0x2a9 -DEBUG azoth_core::validator: [33] PC 0x2bd -DEBUG azoth_core::validator: [34] PC 0x2cd -DEBUG azoth_core::validator: [35] PC 0x2d6 -DEBUG azoth_core::validator: [36] PC 0x2e4 -DEBUG azoth_core::validator: [37] PC 0x30b -DEBUG azoth_core::validator: [38] PC 0x346 -DEBUG azoth_core::validator: [39] PC 0x355 -DEBUG azoth_core::validator: [40] PC 0x35f -DEBUG azoth_core::validator: [41] PC 0x367 -DEBUG azoth_core::validator: [42] PC 0x369 -DEBUG azoth_core::validator: [43] PC 0x370 -DEBUG azoth_core::validator: [44] PC 0x375 -DEBUG azoth_core::validator: [45] PC 0x391 -DEBUG azoth_core::validator: [46] PC 0x3ae -DEBUG azoth_core::validator: [47] PC 0x3f2 -DEBUG azoth_core::validator: [48] PC 0x401 -DEBUG azoth_core::validator: [49] PC 0x445 -DEBUG azoth_core::validator: [50] PC 0x462 -DEBUG azoth_core::validator: [51] PC 0x493 -DEBUG azoth_core::validator: [52] PC 0x498 -DEBUG azoth_core::validator: [53] PC 0x49e -DEBUG azoth_core::validator: [54] PC 0x4a2 -DEBUG azoth_core::validator: [55] PC 0x4a7 -DEBUG azoth_core::validator: [56] PC 0x4b6 -DEBUG azoth_core::validator: [57] PC 0x4be -DEBUG azoth_core::validator: [58] PC 0x4cb -DEBUG azoth_core::validator: [59] PC 0x4d1 -DEBUG azoth_core::validator: [60] PC 0x4e0 -DEBUG azoth_core::validator: [61] PC 0x4e5 -DEBUG azoth_core::validator: [62] PC 0x549 -DEBUG azoth_core::validator: [63] PC 0x568 -DEBUG azoth_core::validator: [64] PC 0x56d -DEBUG azoth_core::validator: [65] PC 0x572 -DEBUG azoth_core::validator: [66] PC 0x58a -DEBUG azoth_core::validator: [67] PC 0x58f -DEBUG azoth_core::validator: [68] PC 0x59b -DEBUG azoth_core::validator: [69] PC 0x5ae -DEBUG azoth_core::validator: [70] PC 0x5b3 -DEBUG azoth_core::validator: [71] PC 0x5bb -DEBUG azoth_core::validator: [72] PC 0x5c1 -DEBUG azoth_core::validator: [73] PC 0x5cb -DEBUG azoth_core::validator: [74] PC 0x61c -DEBUG azoth_core::validator: [75] PC 0x632 -DEBUG azoth_core::validator: [76] PC 0x637 -DEBUG azoth_core::validator: [77] PC 0x642 -DEBUG azoth_core::validator: [78] PC 0x64d -DEBUG azoth_core::validator: [79] PC 0x655 -DEBUG azoth_core::validator: [80] PC 0x65a -DEBUG azoth_core::validator: [81] PC 0x66e -DEBUG azoth_core::validator: [82] PC 0x69b -DEBUG azoth_core::validator: [83] PC 0x6d5 -DEBUG azoth_core::validator: [84] PC 0x6e9 -DEBUG azoth_core::validator: [85] PC 0x701 -DEBUG azoth_core::validator: [86] PC 0x706 -DEBUG azoth_core::validator: [87] PC 0x720 -DEBUG azoth_core::validator: [88] PC 0x72a -DEBUG azoth_core::validator: [89] PC 0x747 -DEBUG azoth_core::validator: [90] PC 0x781 -DEBUG azoth_core::validator: [91] PC 0x7e0 -DEBUG azoth_core::validator: [92] PC 0x7fa -DEBUG azoth_core::validator: [93] PC 0x803 -DEBUG azoth_core::validator: [94] PC 0x80f -DEBUG azoth_core::validator: [95] PC 0x81c -DEBUG azoth_core::validator: [96] PC 0x844 -DEBUG azoth_core::validator: [97] PC 0x854 -DEBUG azoth_core::validator: [98] PC 0x861 -DEBUG azoth_core::validator: [99] PC 0x868 -DEBUG azoth_core::validator: [100] PC 0x874 -DEBUG azoth_core::validator: [101] PC 0x881 -DEBUG azoth_core::validator: [102] PC 0x887 -DEBUG azoth_core::validator: [103] PC 0x88d -DEBUG azoth_core::validator: [104] PC 0x89a -DEBUG azoth_core::validator: [105] PC 0x8a0 -DEBUG azoth_core::validator: [106] PC 0x8b6 -DEBUG azoth_core::validator: [107] PC 0x8ca -DEBUG azoth_core::validator: [108] PC 0x8d4 -DEBUG azoth_core::validator: [109] PC 0x8dc -DEBUG azoth_core::validator: [110] PC 0x8e1 -DEBUG azoth_core::validator: [111] PC 0x8e6 -DEBUG azoth_core::validator: [112] PC 0x958 -DEBUG azoth_core::validator: [113] PC 0x95d -DEBUG azoth_core::validator: [114] PC 0x96e -DEBUG azoth_core::validator: [115] PC 0x977 -DEBUG azoth_core::validator: [116] PC 0x991 -DEBUG azoth_core::validator: [117] PC 0x99a -DEBUG azoth_core::validator: [118] PC 0x9aa -DEBUG azoth_core::validator: [119] PC 0x9b3 -DEBUG azoth_core::validator: [120] PC 0x9ea -DEBUG azoth_core::validator: [121] PC 0xa03 -DEBUG azoth_core::validator: [122] PC 0xa0f -DEBUG azoth_core::validator: [123] PC 0xa16 -DEBUG azoth_core::validator: [124] PC 0xa3b -DEBUG azoth_core::validator: [125] PC 0xa58 -DEBUG azoth_core::validator: [126] PC 0xa5f -DEBUG azoth_core::validator: [127] PC 0xaa4 -DEBUG azoth_core::validator: [128] PC 0xaab -DEBUG azoth_core::validator: [129] PC 0xb1f -DEBUG azoth_core::validator: [130] PC 0xb26 -DEBUG azoth_core::validator: [131] PC 0xcaa -DEBUG azoth_core::validator: [132] PC 0xccb -DEBUG azoth_core::validator: [133] PC 0xcda -DEBUG azoth_core::validator: [134] PC 0xcdf -DEBUG azoth_core::validator: [135] PC 0xced -DEBUG azoth_core::validator: [136] PC 0xcfb -DEBUG azoth_core::validator: [137] PC 0xd08 -DEBUG azoth_core::validator: [138] PC 0xd0f -DEBUG azoth_core::validator: [139] PC 0xd4c -DEBUG azoth_core::validator: [140] PC 0xd67 -DEBUG azoth_core::validator: [141] PC 0xd89 -DEBUG azoth_core::validator: [142] PC 0xd8e -DEBUG azoth_core::validator: [143] PC 0xda6 -DEBUG azoth_core::validator: [144] PC 0xdb1 -DEBUG azoth_core::validator: [145] PC 0xdb8 -DEBUG azoth_core::validator: [146] PC 0xdf6 -DEBUG azoth_core::validator: [147] PC 0xdfd -DEBUG azoth_core::validator: [148] PC 0xe9f -DEBUG azoth_core::validator: [149] PC 0xea6 -DEBUG azoth_core::validator: [150] PC 0xfe7 -DEBUG azoth_core::validator: [151] PC 0xfee -DEBUG azoth_core::validator: [152] PC 0x1077 -DEBUG azoth_core::validator: [153] PC 0x107e -DEBUG azoth_core::validator: [154] PC 0x10c3 -DEBUG azoth_core::validator: [155] PC 0x10ca -DEBUG azoth_core::validator: [156] PC 0x1172 -DEBUG azoth_core::validator: [157] PC 0x1182 -DEBUG azoth_core::validator: [158] PC 0x118a -DEBUG azoth_core::validator: [159] PC 0x1191 -DEBUG azoth_core::validator: [160] PC 0x11d5 -DEBUG azoth_core::validator: [161] PC 0x11dc -DEBUG azoth_core::validator: [162] PC 0x1221 -DEBUG azoth_core::validator: [163] PC 0x1230 -DEBUG azoth_core::validator: [164] PC 0x123e -DEBUG azoth_core::validator: [165] PC 0x124b -DEBUG azoth_core::validator: [166] PC 0x1252 -DEBUG azoth_core::validator: [167] PC 0x1310 -DEBUG azoth_core::validator: [168] PC 0x1317 -DEBUG azoth_core::validator: [169] PC 0x135c -DEBUG azoth_core::validator: [170] PC 0x138f -DEBUG azoth_core::validator: [171] PC 0x13ab -DEBUG azoth_core::validator: [172] PC 0x13b7 -DEBUG azoth_core::validator: [173] PC 0x13c5 -DEBUG azoth_core::validator: [174] PC 0x13e1 -DEBUG azoth_core::validator: [175] PC 0x13e8 -DEBUG azoth_core::validator: [176] PC 0x142d -DEBUG azoth_core::validator: [177] PC 0x1434 -DEBUG azoth_core::validator: [178] PC 0x1513 -DEBUG azoth_core::validator: [179] PC 0x151a -DEBUG azoth_core::validator: [180] PC 0x1631 -DEBUG azoth_core::validator: [181] PC 0x1638 -DEBUG azoth_core::validator: [182] PC 0x1739 -DEBUG azoth_core::validator: [183] PC 0x1741 -DEBUG azoth_core::validator: [184] PC 0x1766 -DEBUG azoth_core::validator: [185] PC 0x186b -DEBUG azoth_core::validator: [186] PC 0x1892 -DEBUG azoth_core::validator: [187] PC 0x189b -DEBUG azoth_core::validator: [188] PC 0x18a0 -DEBUG azoth_core::validator: [189] PC 0x18ac -DEBUG azoth_core::validator: [190] PC 0x18b3 -DEBUG azoth_core::validator: [191] PC 0x199e -DEBUG azoth_core::validator: [192] PC 0x19b1 -DEBUG azoth_core::validator: [193] PC 0x19c4 -DEBUG azoth_core::validator: [194] PC 0x19d7 -DEBUG azoth_core::validator: [195] PC 0x19ea -DEBUG azoth_core::validator: [196] PC 0x19fb -DEBUG azoth_core::validator: [197] PC 0x1a08 -DEBUG azoth_core::validator: [198] PC 0x1a19 -DEBUG azoth_core::validator: [199] PC 0x1a3a -DEBUG azoth_core::validator: [200] PC 0x1a48 -DEBUG azoth_core::validator: [201] PC 0x1a50 -DEBUG azoth_core::validator: [202] PC 0x1a6b -DEBUG azoth_core::validator: [203] PC 0x1a8f -DEBUG azoth_core::validator: [204] PC 0x1a95 -DEBUG azoth_core::validator: [205] PC 0x1a9a -DEBUG azoth_core::validator: [206] PC 0x1a9f -DEBUG azoth_core::validator: [207] PC 0x1aa5 -DEBUG azoth_core::validator: [208] PC 0x1aa7 -DEBUG azoth_core::validator: [209] PC 0x1aa9 -DEBUG azoth_core::validator: [210] PC 0x1abc -DEBUG azoth_core::validator: [211] PC 0x1ac2 -DEBUG azoth_core::validator: [212] PC 0x1ae4 -DEBUG azoth_core::validator: [213] PC 0x1af2 -DEBUG azoth_core::validator: [214] PC 0x1afb -DEBUG azoth_core::validator: [215] PC 0x1b00 -DEBUG azoth_core::validator: [216] PC 0x1b0e -DEBUG azoth_core::validator: [217] PC 0x1b15 -DEBUG azoth_core::validator: [218] PC 0x1b1e -DEBUG azoth_core::validator: [219] PC 0x1b25 -DEBUG azoth_core::validator: [220] PC 0x1c2d -DEBUG azoth_core::validator: [221] PC 0x1c4f -DEBUG azoth_core::validator: [222] PC 0x1c6a -DEBUG azoth_core::validator: [223] PC 0x1c8e -DEBUG azoth_core::validator: [224] PC 0x1c90 -DEBUG azoth_core::validator: [225] PC 0x1cbb -DEBUG azoth_core::validator: [226] PC 0x1cc2 -DEBUG azoth_core::validator: [227] PC 0x1cc7 -DEBUG azoth_core::validator: [228] PC 0x1ccc -DEBUG azoth_core::validator: [229] PC 0x1cda -DEBUG azoth_core::validator: [230] PC 0x1ce1 -DEBUG azoth_core::validator: [231] PC 0x1ce9 -DEBUG azoth_core::validator: [232] PC 0x1cff -DEBUG azoth_core::validator: [233] PC 0x1d07 -DEBUG azoth_core::validator: [234] PC 0x1d0d -DEBUG azoth_core::validator: [235] PC 0x1d10 -DEBUG azoth_core::validator: [236] PC 0x1d17 -DEBUG azoth_core::validator: [237] PC 0x1d8d -DEBUG azoth_core::validator: [238] PC 0x1d94 -DEBUG azoth_core::validator: [239] PC 0x1e91 -DEBUG azoth_core::validator: [240] PC 0x1ea4 -DEBUG azoth_core::validator: [241] PC 0x1ea9 -DEBUG azoth_core::validator: [242] PC 0x1ec1 -DEBUG azoth_core::validator: [243] PC 0x1ec9 -DEBUG azoth_core::validator: [244] PC 0x1edf -DEBUG azoth_core::validator: [245] PC 0x1f02 -DEBUG azoth_core::validator: [246] PC 0x1f05 -DEBUG azoth_core::validator: [247] PC 0x1f08 -DEBUG azoth_core::validator: [248] PC 0x1f2a -DEBUG azoth_core::validator: [249] PC 0x1f31 -DEBUG azoth_core::validator: [250] PC 0x1f48 -DEBUG azoth_core::validator: [251] PC 0x1f6a -DEBUG azoth_core::validator: [252] PC 0x1f6c -DEBUG azoth_core::validator: [253] PC 0x1f6f -DEBUG azoth_core::validator: [254] PC 0x1f82 -DEBUG azoth_core::validator: [255] PC 0x1f91 -DEBUG azoth_core::validator: [256] PC 0x1f99 -DEBUG azoth_core::validator: [257] PC 0x1fa4 -DEBUG azoth_core::validator: [258] PC 0x1faa -DEBUG azoth_core::validator: [259] PC 0x1fb8 -DEBUG azoth_core::validator: [260] PC 0x1fc3 -DEBUG azoth_core::validator: [261] PC 0x1fce -DEBUG azoth_core::validator: [262] PC 0x1fd5 -DEBUG azoth_core::validator: [263] PC 0x1fde -DEBUG azoth_core::validator: [264] PC 0x1ff3 -DEBUG azoth_core::validator: [265] PC 0x1ffa -DEBUG azoth_core::validator: [266] PC 0x2001 -DEBUG azoth_core::validator: [267] PC 0x2082 -DEBUG azoth_core::validator: [268] PC 0x208f -DEBUG azoth_core::validator: [269] PC 0x20a0 -DEBUG azoth_core::validator: [270] PC 0x20bb -DEBUG azoth_core::validator: [271] PC 0x20dd -DEBUG azoth_core::validator: [272] PC 0x20e3 -DEBUG azoth_core::validator: [273] PC 0x20ff -DEBUG azoth_core::validator: [274] PC 0x2105 -DEBUG azoth_core::validator: [275] PC 0x2120 -DEBUG azoth_core::validator: [276] PC 0x2125 -DEBUG azoth_core::validator: [277] PC 0x2134 -DEBUG azoth_core::validator: [278] PC 0x214d -DEBUG azoth_core::validator: [279] PC 0x2154 -DEBUG azoth_core::validator: [280] PC 0x215e -DEBUG azoth_core::validator: [281] PC 0x217e -DEBUG azoth_core::validator: [282] PC 0x2184 -DEBUG azoth_core::validator: [283] PC 0x2192 -DEBUG azoth_core::validator: [284] PC 0x2198 -DEBUG azoth_core::validator: [285] PC 0x21b3 -DEBUG azoth_core::validator: [286] PC 0x21c2 -DEBUG azoth_core::validator: [287] PC 0x21db -DEBUG azoth_core::validator: [288] PC 0x21e5 -DEBUG azoth_core::validator: [289] PC 0x21f6 -DEBUG azoth_core::validator: [290] PC 0x2207 -DEBUG azoth_core::validator: [291] PC 0x2218 -DEBUG azoth_core::validator: [292] PC 0x2229 -DEBUG azoth_core::validator: [293] PC 0x2233 -DEBUG azoth_core::validator: [294] PC 0x2240 -DEBUG azoth_core::validator: [295] PC 0x2251 -DEBUG azoth_core::validator: [296] PC 0x225b -DEBUG azoth_core::validator: [297] PC 0x2266 -DEBUG azoth_core::validator: [298] PC 0x2277 -DEBUG azoth_core::validator: [299] PC 0x2291 -DEBUG azoth_core::validator: [300] PC 0x22aa -DEBUG azoth_core::validator: [301] PC 0x22b1 -DEBUG azoth_core::validator: [302] PC 0x22ce -DEBUG azoth_core::validator: [303] PC 0x22d8 -DEBUG azoth_core::validator: [304] PC 0x22db -DEBUG azoth_core::validator: [305] PC 0x22ef -DEBUG azoth_core::validator: [306] PC 0x2305 -DEBUG azoth_core::validator: [307] PC 0x230c -DEBUG azoth_core::validator: [308] PC 0x2318 -DEBUG azoth_core::validator: [309] PC 0x231f -DEBUG azoth_core::validator: [310] PC 0x2333 -DEBUG azoth_core::validator: [311] PC 0x2338 -DEBUG azoth_core::validator: [312] PC 0x2349 -DEBUG azoth_core::validator: [313] PC 0x234c -DEBUG azoth_core::validator: [314] PC 0x2364 -DEBUG azoth_core::validator: [315] PC 0x237e -DEBUG azoth_core::validator: [316] PC 0x238a -DEBUG azoth_core::validator: [317] PC 0x2391 -DEBUG azoth_core::validator: [318] PC 0x23b1 -DEBUG azoth_core::validator: [319] PC 0x23b8 -DEBUG azoth_core::validator: [320] PC 0x23c0 -DEBUG azoth_core::validator: [321] PC 0x2481 -DEBUG azoth_core::validator: [322] PC 0x2488 -DEBUG azoth_core::validator: [323] PC 0x251e -DEBUG azoth_core::validator: [324] PC 0x2542 -DEBUG azoth_core::validator: [325] PC 0x254a -DEBUG azoth_core::validator: [326] PC 0x2565 -DEBUG azoth_core::validator: [327] PC 0x2584 -DEBUG azoth_core::validator: [328] PC 0x2589 -DEBUG azoth_core::validator: [329] PC 0x258d -DEBUG azoth_core::validator: [330] PC 0x2590 -DEBUG azoth_core::validator: [331] PC 0x25a2 -DEBUG azoth_core::validator: [332] PC 0x25b4 -DEBUG azoth_core::validator: [333] PC 0x25b9 -DEBUG azoth_core::validator: [334] PC 0x25c0 -DEBUG azoth_core::validator: [335] PC 0x25e1 -DEBUG azoth_core::validator: [336] PC 0x25ee -DEBUG azoth_core::validator: [337] PC 0x260c -DEBUG azoth_core::validator: [338] PC 0x2613 -DEBUG azoth_core::validator: [339] PC 0x261d -DEBUG azoth_core::validator: [340] PC 0x262f -DEBUG azoth_core::validator: [341] PC 0x263f -DEBUG azoth_core::validator: [342] PC 0x2648 -DEBUG azoth_core::validator: [343] PC 0x2654 -DEBUG azoth_core::validator: [344] PC 0x265f -DEBUG azoth_core::validator: [345] PC 0x2678 -DEBUG azoth_core::validator: [346] PC 0x268c -DEBUG azoth_core::validator: [347] PC 0x2698 -DEBUG azoth_core::validator: [348] PC 0x26b1 -DEBUG azoth_core::validator: [349] PC 0x26b6 -DEBUG azoth_core::validator: [350] PC 0x26c0 -DEBUG azoth_core::validator: [351] PC 0x26c7 -DEBUG azoth_core::validator: [352] PC 0x2710 -DEBUG azoth_core::validator: [353] PC 0x2717 -DEBUG azoth_core::validator: [354] PC 0x275c -DEBUG azoth_core::validator: [355] PC 0x2763 -DEBUG azoth_core::validator: [356] PC 0x279f -DEBUG azoth_core::validator: [357] PC 0x27ca -DEBUG azoth_core::validator: [358] PC 0x27d2 -DEBUG azoth_core::validator: [359] PC 0x27e7 -DEBUG azoth_core::validator: [360] PC 0x280b -DEBUG azoth_core::validator: [361] PC 0x280d -DEBUG azoth_core::validator: [362] PC 0x2818 -DEBUG azoth_core::validator: [363] PC 0x2826 -DEBUG azoth_core::validator: [364] PC 0x283b -DEBUG azoth_core::validator: [365] PC 0x2841 -DEBUG azoth_core::validator: [366] PC 0x284e -DEBUG azoth_core::validator: [367] PC 0x2854 -DEBUG azoth_core::validator: [368] PC 0x2860 -DEBUG azoth_core::validator: [369] PC 0x2870 -DEBUG azoth_core::validator: [370] PC 0x2889 -DEBUG azoth_core::validator: [371] PC 0x28a4 -DEBUG azoth_core::validator: [372] PC 0x28ae -DEBUG azoth_core::validator: [373] PC 0x28b1 -DEBUG azoth_core::validator: [374] PC 0x28c4 -DEBUG azoth_core::validator: [375] PC 0x28da -DEBUG azoth_core::validator: [376] PC 0x28e0 -DEBUG azoth_core::validator: [377] PC 0x28ec -DEBUG azoth_core::validator: [378] PC 0x28f3 -DEBUG azoth_core::validator: [379] PC 0x2907 -DEBUG azoth_core::validator: [380] PC 0x290b -DEBUG azoth_core::validator: [381] PC 0x291c -DEBUG azoth_core::validator: [382] PC 0x291f -DEBUG azoth_core::validator: [383] PC 0x2936 -DEBUG azoth_core::validator: [384] PC 0x2950 -DEBUG azoth_core::validator: [385] PC 0x295c -DEBUG azoth_core::validator: [386] PC 0x2963 -DEBUG azoth_core::validator: [387] PC 0x2983 -DEBUG azoth_core::validator: [388] PC 0x2989 -DEBUG azoth_core::validator: [389] PC 0x2991 -DEBUG azoth_core::validator: [390] PC 0x299d -DEBUG azoth_core::validator: [391] PC 0x29a7 -DEBUG azoth_core::validator: [392] PC 0x29aa -DEBUG azoth_core::validator: [393] PC 0x29b8 -DEBUG azoth_core::validator: [394] PC 0x29cb -DEBUG azoth_core::validator: [395] PC 0x29d7 -DEBUG azoth_core::validator: [396] PC 0x29de -DEBUG azoth_core::validator: [397] PC 0x29e1 -DEBUG azoth_core::validator: [398] PC 0x29f4 -DEBUG azoth_core::validator: [399] PC 0x2a0f -DEBUG azoth_core::validator: [400] PC 0x2a14 -DEBUG azoth_core::validator: [401] PC 0x2a2a -DEBUG azoth_core::validator: [402] PC 0x2a38 -DEBUG azoth_core::validator: [403] PC 0x2a4e -DEBUG azoth_core::validator: [404] PC 0x2a57 -DEBUG azoth_core::validator: [405] PC 0x2a6b -DEBUG azoth_core::validator: [406] PC 0x2a75 -DEBUG azoth_core::validator: [407] PC 0x2a7b -DEBUG azoth_core::validator: [408] PC 0x2a8a -DEBUG azoth_core::validator: [409] PC 0x2a96 -DEBUG azoth_core::validator: [410] PC 0x2a9e -DEBUG azoth_core::validator: [411] PC 0x2aa4 -DEBUG azoth_core::validator: [412] PC 0x2ab1 -DEBUG azoth_core::validator: [413] PC 0x2ab7 -DEBUG azoth_core::validator: [414] PC 0x2ad5 -DEBUG azoth_core::validator: [415] PC 0x2ae0 -DEBUG azoth_core::validator: [416] PC 0x2ae7 -DEBUG azoth_core::validator: [417] PC 0x2af1 -DEBUG azoth_core::validator: [418] PC 0x2af9 -DEBUG azoth_core::validator: [419] PC 0x2b0a -DEBUG azoth_core::validator: [420] PC 0x2b1b -DEBUG azoth_core::validator: [421] PC 0x2b34 -DEBUG azoth_core::validator: [422] PC 0x2b3b -DEBUG azoth_core::validator: [423] PC 0x2b43 -DEBUG azoth_core::validator: [424] PC 0x2b57 -DEBUG azoth_core::validator: [425] PC 0x2b63 -DEBUG azoth_core::validator: [426] PC 0x2b70 -DEBUG azoth_core::validator: [427] PC 0x2b7e -DEBUG azoth_core::validator: [428] PC 0x2b9a -DEBUG azoth_core::validator: [429] PC 0x2ba0 -DEBUG azoth_core::validator: [430] PC 0x2bb0 -DEBUG azoth_core::validator: [431] PC 0x2bb4 -DEBUG azoth_core::validator: [432] PC 0x2bc9 -DEBUG azoth_core::validator: [433] PC 0x2bea -DEBUG azoth_core::validator: [434] PC 0x2bf4 -DEBUG azoth_core::validator: [435] PC 0x2bff -DEBUG azoth_core::validator: [436] PC 0x2c13 -DEBUG azoth_core::validator: [437] PC 0x2c1f -DEBUG azoth_core::validator: [438] PC 0x2c28 -DEBUG azoth_core::validator: [439] PC 0x2c31 -DEBUG azoth_core::validator: [440] PC 0x2c43 -DEBUG azoth_core::validator: [441] PC 0x2c62 -DEBUG azoth_core::validator: [442] PC 0x2c6b -DEBUG azoth_core::validator: [443] PC 0x2c7c -DEBUG azoth_core::validator: [444] PC 0x2c85 -DEBUG azoth_core::validator: [445] PC 0x2c93 -DEBUG azoth_core::validator: [446] PC 0x2ca8 -DEBUG azoth_core::validator: [447] PC 0x2cb6 -DEBUG azoth_core::validator: [448] PC 0x2cb9 -DEBUG azoth_core::validator: [449] PC 0x2ccb -DEBUG azoth_core::validator: [450] PC 0x2ce1 -DEBUG azoth_core::validator: [451] PC 0x2ced -DEBUG azoth_core::validator: [452] PC 0x2cf4 -DEBUG azoth_core::validator: [453] PC 0x2d60 -DEBUG azoth_core::validator: [454] PC 0x2d67 -DEBUG azoth_core::validator: [455] PC 0x2da1 -DEBUG azoth_core::validator: [456] PC 0x2da8 -DEBUG azoth_core::validator: [457] PC 0x2e99 -DEBUG azoth_core::validator: [458] PC 0x2ea0 -DEBUG azoth_core::validator: [459] PC 0x2f52 -DEBUG azoth_core::validator: [460] PC 0x2f59 -DEBUG azoth_core::validator: [461] PC 0x2f95 -DEBUG azoth_core::validator: [462] PC 0x2f9c -DEBUG azoth_core::validator: [463] PC 0x2fe1 -DEBUG azoth_core::validator: [464] PC 0x305b -DEBUG azoth_core::validator: [465] PC 0x3063 -DEBUG azoth_core::validator: [466] PC 0x306a -DEBUG azoth_core::validator: [467] PC 0x308e -DEBUG azoth_core::validator: [468] PC 0x3096 -DEBUG azoth_core::validator: [469] PC 0x309c -DEBUG azoth_core::validator: [470] PC 0x30a3 -DEBUG azoth_core::validator: [471] PC 0x30aa -DEBUG azoth_core::validator: [472] PC 0x30b1 -DEBUG azoth_core::validator: [473] PC 0x30bd -DEBUG azoth_core::validator: [474] PC 0x30d0 -DEBUG azoth_core::validator: [475] PC 0x30d7 -DEBUG azoth_core::validator: [476] PC 0x30dd -DEBUG azoth_core::validator: [477] PC 0x30ec -DEBUG azoth_core::validator: [478] PC 0x30f0 -DEBUG azoth_core::validator: [479] PC 0x3112 -DEBUG azoth_core::validator: [480] PC 0x311b -DEBUG azoth_core::validator: [481] PC 0x312a -DEBUG azoth_core::validator: [482] PC 0x312f -DEBUG azoth_core::validator: [483] PC 0x3139 -DEBUG azoth_core::validator: [484] PC 0x3146 -DEBUG azoth_core::validator: [485] PC 0x3156 -DEBUG azoth_core::validator: [486] PC 0x316d -DEBUG azoth_core::validator: [487] PC 0x3188 -DEBUG azoth_core::validator: [488] PC 0x319f -DEBUG azoth_core::validator: [489] PC 0x31a5 -DEBUG azoth_core::validator: [490] PC 0x31bc -DEBUG azoth_core::validator: [491] PC 0x31cb -DEBUG azoth_core::validator: [492] PC 0x31e4 -DEBUG azoth_core::validator: [493] PC 0x31ea -DEBUG azoth_core::validator: [494] PC 0x31f4 -DEBUG azoth_core::validator: [495] PC 0x320d -DEBUG azoth_core::validator: [496] PC 0x321a -DEBUG azoth_core::validator: [497] PC 0x3220 -DEBUG azoth_core::validator: [498] PC 0x3237 -DEBUG azoth_core::validator: [499] PC 0x3246 -DEBUG azoth_core::validator: [500] PC 0x325f -DEBUG azoth_core::validator: [501] PC 0x3269 -DEBUG azoth_core::validator: [502] PC 0x3280 -DEBUG azoth_core::validator: [503] PC 0x3299 -DEBUG azoth_core::validator: [504] PC 0x329e -DEBUG azoth_core::validator: [505] PC 0x32a3 -DEBUG azoth_core::validator: [506] PC 0x32b8 -DEBUG azoth_core::validator: [507] PC 0x32bc -DEBUG azoth_core::validator: [508] PC 0x32de -DEBUG azoth_core::validator: [509] PC 0x32e7 -DEBUG azoth_core::validator: [510] PC 0x32f7 -DEBUG azoth_core::validator: [511] PC 0x3306 -DEBUG azoth_core::validator: [512] PC 0x3310 -DEBUG azoth_core::validator: [513] PC 0x3326 -DEBUG azoth_core::validator: [514] PC 0x3337 -DEBUG azoth_core::validator: [515] PC 0x3343 -DEBUG azoth_core::validator: [516] PC 0x334a -DEBUG azoth_core::validator: [517] PC 0x334f -DEBUG azoth_core::validator: [518] PC 0x3360 -DEBUG azoth_core::validator: [519] PC 0x3365 -DEBUG azoth_core::validator: [520] PC 0x3368 -DEBUG azoth_core::validator: [521] PC 0x338a -DEBUG azoth_core::validator: [522] PC 0x3399 -DEBUG azoth_core::validator: [523] PC 0x339e -DEBUG azoth_core::validator: [524] PC 0x33b4 -DEBUG azoth_core::validator: [525] PC 0x33c6 -DEBUG azoth_core::validator: [526] PC 0x33cd -DEBUG azoth_core::validator: [527] PC 0x33cf -DEBUG azoth_core::validator: [528] PC 0x33dd -DEBUG azoth_core::validator: [529] PC 0x33e7 -DEBUG azoth_core::validator: [530] PC 0x33ee -DEBUG azoth_core::validator: [531] PC 0x3404 -DEBUG azoth_core::validator: [532] PC 0x340a -DEBUG azoth_core::validator: [533] PC 0x3427 -DEBUG azoth_core::validator: [534] PC 0x342d -DEBUG azoth_core::validator: [535] PC 0x3433 -DEBUG azoth_core::validator: [536] PC 0x3448 -DEBUG azoth_core::validator: [537] PC 0x3457 -DEBUG azoth_core::validator: [538] PC 0x345f -DEBUG azoth_core::validator: [539] PC 0x3477 -DEBUG azoth_core::validator: [540] PC 0x347d -DEBUG azoth_core::validator: [541] PC 0x3486 -DEBUG azoth_core::validator: [542] PC 0x348d -DEBUG azoth_core::validator: [543] PC 0x34ab -DEBUG azoth_core::validator: [544] PC 0x34ba -DEBUG azoth_core::validator: [545] PC 0x34ff -DEBUG azoth_core::validator: [546] PC 0x350a -DEBUG azoth_core::validator: [547] PC 0x351b -DEBUG azoth_core::validator: [548] PC 0x3535 -DEBUG azoth_core::validator: [549] PC 0x3552 -DEBUG azoth_core::validator: [550] PC 0x355c -DEBUG azoth_core::validator: [551] PC 0x355f -DEBUG azoth_core::validator: [552] PC 0x3573 -DEBUG azoth_core::validator: [553] PC 0x3589 -DEBUG azoth_core::validator: [554] PC 0x3595 -DEBUG azoth_core::validator: [555] PC 0x359c -DEBUG azoth_core::validator: [556] PC 0x35b0 -DEBUG azoth_core::validator: [557] PC 0x35b5 -DEBUG azoth_core::validator: [558] PC 0x35c6 -DEBUG azoth_core::validator: [559] PC 0x35c9 -DEBUG azoth_core::validator: [560] PC 0x35e1 -DEBUG azoth_core::validator: [561] PC 0x35fb -DEBUG azoth_core::validator: [562] PC 0x3607 -DEBUG azoth_core::validator: [563] PC 0x360e -DEBUG azoth_core::validator: [564] PC 0x362e -DEBUG azoth_core::validator: [565] PC 0x3636 -DEBUG azoth_core::validator: [566] PC 0x36aa -DEBUG azoth_core::validator: [567] PC 0x36ac -DEBUG azoth_core::validator: [568] PC 0x36ba -DEBUG azoth_core::validator: [569] PC 0x36bf -DEBUG azoth_core::validator: [570] PC 0x36c1 -DEBUG azoth_core::validator: [571] PC 0x36ce -DEBUG azoth_core::validator: [572] PC 0x36d3 -DEBUG azoth_core::validator: [573] PC 0x36d5 -DEBUG azoth_core::validator: [574] PC 0x36e3 -DEBUG azoth_core::validator: [575] PC 0x36e8 -DEBUG azoth_core::validator: [576] PC 0x36ea -DEBUG azoth_core::validator: [577] PC 0x36f7 -DEBUG azoth_core::validator: [578] PC 0x36fc -DEBUG azoth_core::validator: [579] PC 0x36fe -DEBUG azoth_core::validator: [580] PC 0x370b -DEBUG azoth_core::validator: [581] PC 0x3710 -DEBUG azoth_core::validator: [582] PC 0x3712 -DEBUG azoth_core::validator: [583] PC 0x3720 -DEBUG azoth_core::validator: [584] PC 0x3725 -DEBUG azoth_core::validator: [585] PC 0x3727 -DEBUG azoth_core::validator: [586] PC 0x3735 -DEBUG azoth_core::validator: [587] PC 0x373a -DEBUG azoth_core::validator: [588] PC 0x373c -DEBUG azoth_core::validator: [589] PC 0x374a -DEBUG azoth_core::validator: [590] PC 0x374f -DEBUG azoth_core::validator: [591] PC 0x3751 -DEBUG azoth_core::validator: [592] PC 0x375f -DEBUG azoth_core::validator: [593] PC 0x3764 -DEBUG azoth_core::validator: [594] PC 0x3766 -DEBUG azoth_core::validator: [595] PC 0x3774 -DEBUG azoth_core::validator: [596] PC 0x3779 -DEBUG azoth_core::validator: [597] PC 0x377b -DEBUG azoth_core::validator: [598] PC 0x3789 -DEBUG azoth_core::validator: [599] PC 0x378e -DEBUG azoth_core::validator: [600] PC 0x3790 -DEBUG azoth_core::validator: [601] PC 0x379e -DEBUG azoth_core::validator: [602] PC 0x37a3 -DEBUG azoth_core::validator: [603] PC 0x37a5 -DEBUG azoth_core::validator: [604] PC 0x37b3 -DEBUG azoth_core::validator: [605] PC 0x37b8 -DEBUG azoth_core::validator: [606] PC 0x37ba -DEBUG azoth_core::validator: [607] PC 0x37c7 -DEBUG azoth_core::validator: [608] PC 0x37cc -DEBUG azoth_core::validator: [609] PC 0x37ce -DEBUG azoth_core::validator: [610] PC 0x37dc -DEBUG azoth_core::validator: [611] PC 0x37e1 -DEBUG azoth_core::validator: [612] PC 0x37e3 -DEBUG azoth_core::validator: [613] PC 0x37f1 -DEBUG azoth_core::validator: [614] PC 0x37f6 -DEBUG azoth_core::validator: [615] PC 0x37f8 -DEBUG azoth_core::validator: [616] PC 0x3806 -DEBUG azoth_core::validator: [617] PC 0x380b -DEBUG azoth_core::validator: [618] PC 0x380d -DEBUG azoth_core::validator: [619] PC 0x381b -DEBUG azoth_core::validator: [620] PC 0x3820 -DEBUG azoth_core::validator: [621] PC 0x3822 -DEBUG azoth_core::validator: [622] PC 0x382f -DEBUG azoth_core::validator: [623] PC 0x3834 -DEBUG azoth_core::validator: [624] PC 0x3846 -DEBUG azoth_core::validator: [625] PC 0x3858 -DEBUG azoth_core::validator: [626] PC 0x385d -DEBUG azoth_core::validator: [627] PC 0x386f -DEBUG azoth_core::validator: [628] PC 0x3881 -DEBUG azoth_core::validator: [629] PC 0x3886 -DEBUG azoth_core::validator: [630] PC 0x3898 -DEBUG azoth_core::validator: [631] PC 0x38aa -DEBUG azoth_core::validator: [632] PC 0x38af -DEBUG azoth_core::validator: [633] PC 0x38c1 -DEBUG azoth_core::validator: [634] PC 0x38d3 -DEBUG azoth_core::validator: [635] PC 0x38d8 -DEBUG azoth_core::validator: [636] PC 0x38ea -DEBUG azoth_core::validator: [637] PC 0x38fc -DEBUG azoth_core::validator: [638] PC 0x3901 -DEBUG azoth_core::validator: [639] PC 0x3913 -DEBUG azoth_core::validator: [640] PC 0x3925 -DEBUG azoth_core::validator: [641] PC 0x392a -DEBUG azoth_core::validator: [642] PC 0x393c -DEBUG azoth_core::validator: [643] PC 0x394e -DEBUG azoth_core::validator: [644] PC 0x3953 -DEBUG azoth_core::validator: [645] PC 0x3965 -DEBUG azoth_core::validator: [646] PC 0x3977 -DEBUG azoth_core::validator: [647] PC 0x397c -DEBUG azoth_core::validator: [648] PC 0x398e -DEBUG azoth_core::validator: [649] PC 0x39a0 -DEBUG azoth_core::validator: [650] PC 0x39a5 -DEBUG azoth_transform::obfuscator: Jump validation passed -DEBUG azoth_transform::obfuscator: Appending 512 bytes of arithmetic chain data section to runtime -DEBUG azoth_transform::obfuscator: Runtime bytecode size with data section: 15287 bytes -DEBUG azoth_core::strip: reassemble: original_runtime_len=10975, new_runtime_len=15287 -DEBUG azoth_core::strip: Runtime length changed from 10975 to 15287 bytes, updating init code -DEBUG azoth_core::strip: update_init_code_size called: new_runtime_len=15287, clean_len=10975 -DEBUG azoth_core::strip: Calculated values: runtime_offset=751, post_runtime_len=53, runtime_tail_len=15340, original_runtime_tail_len=11028 -DEBUG azoth_core::strip: Init code size: 751 bytes, runtime offset: 751 -DEBUG azoth_core::strip: Full init code (hex): 61012080604052346101a05760a081612e03803803809161002082856102a3565b8339810103126101a057610033816102da565b90610040602082016102da565b604082015190608060608401519301519360a05260c05260e052336080526101008052801580158061029a575b6100ee575b604051612b1490816102ef823960805181818161015a01528181610272015281816103c401526105f5015260a05181818161031001528181610517015281816106a001526108ee015260c0518181816104160152610933015260e0518181816101d7015261091101526101005181818161075e015261081e0152f35b60ff60075460081c16610255576102105781156101cb57805f55806002558160015560018060a01b0360a051169181018091116101b7575f91606460209260405194859384926323b872dd60e01b845233600485015230602485015260448401525af180156101ac57610174575b5061010061ff001960075416176007555f8080610072565b6020813d6020116101a4575b8161018d602093836102a3565b810103126101a05751801515811461015c575b5f80fd5b3d9150610180565b6040513d5f823e3d90fd5b634e487b7160e01b5f52601160045260245ffd5b60405162461bcd60e51b815260206004820152601f60248201527f5061796d656e7420616d6f756e74206d757374206265206e6f6e2d7a65726f006044820152606490fd5b60405162461bcd60e51b815260206004820152601e60248201527f52657761726420616d6f756e74206d757374206265206e6f6e2d7a65726f00006044820152606490fd5b60405162461bcd60e51b815260206004820152601760248201527f436f6e747261637420616c72656164792066756e6465640000000000000000006044820152606490fd5b5082151561006d565b601f909101601f19168101906001600160401b038211908210176102c657604052565b634e487b7160e01b5f52604160045260245ffd5b51906001600160a01b03821682036101a05756fe -DEBUG azoth_core::strip: Init code structure: offsets 16-24: [2e, 03, 80, 38, 03, 80, 91, 61, 00] -DEBUG azoth_core::strip: Updated CODECOPY length PUSH at 0x76 to 0x3bec -DEBUG azoth_core::strip: Updated total bytecode size PUSH at 0xf to 0x3edb - WARN azoth_core::strip: Targeted init code patching failed: Could not find RETURN length PUSH to update - WARN azoth_core::strip: Will attempt fallback patching during reassembly -DEBUG azoth_core::strip: Runtime size changed - using sequential reassembly: prefix + runtime + suffix -DEBUG azoth_core::strip: Original runtime started at offset 751, preserving prefix structure -DEBUG azoth_core::strip: Added pre-runtime Init section: 751 bytes (original offset: 0) -DEBUG azoth_core::strip: Added runtime code: 15287 bytes -DEBUG azoth_core::strip: Added post-runtime Auxdata section: 53 bytes (original offset: 11726) -DEBUG azoth_core::strip: Sequential reassembly complete: 16091 bytes total -DEBUG azoth_transform::obfuscator: Bytecode comparison: -DEBUG azoth_transform::obfuscator: Original size: 11779 bytes -DEBUG azoth_transform::obfuscator: Final size: 16091 bytes -DEBUG azoth_transform::obfuscator: Bytecode actually changed: true -DEBUG azoth_transform::obfuscator: Gas analysis breakdown: -DEBUG azoth_transform::obfuscator: Original: 571 zeros, 11208 non-zeros -DEBUG azoth_transform::obfuscator: Obfuscated: 830 zeros, 15261 non-zeros -DEBUG azoth_transform::obfuscator: Original gas: 202612 -DEBUG azoth_transform::obfuscator: Obfuscated gas: 268496 -DEBUG azoth_transform::obfuscator: Gas delta: +65884 -DEBUG azoth_transform::obfuscator: === Building ObfuscationResult === -DEBUG azoth_transform::obfuscator: Selector mapping has 19 entries: -DEBUG azoth_transform::obfuscator: Selector 0x81972d00 -> Token 0x9bbfb1f4 -DEBUG azoth_transform::obfuscator: Selector 0x8677ab23 -> Token 0x2dd1abc1 -DEBUG azoth_transform::obfuscator: Selector 0xd415b3f9 -> Token 0x569bee5a -DEBUG azoth_transform::obfuscator: Selector 0x8bd03d0a -> Token 0x1a6ea280 -DEBUG azoth_transform::obfuscator: Selector 0xa65e2cfd -> Token 0xe224c59d -DEBUG azoth_transform::obfuscator: Selector 0x9940686e -> Token 0x994049e6 -DEBUG azoth_transform::obfuscator: Selector 0x046f7da2 -> Token 0xae6e97f9 -DEBUG azoth_transform::obfuscator: Selector 0x3ccfd60b -> Token 0x0ca2d6c9 -DEBUG azoth_transform::obfuscator: Selector 0xcb766a56 -> Token 0x1ce46a9e -DEBUG azoth_transform::obfuscator: Selector 0x33ee5f35 -> Token 0x4020961c -DEBUG azoth_transform::obfuscator: Selector 0xd4899a62 -> Token 0xd4162d29 -DEBUG azoth_transform::obfuscator: Selector 0x308657d7 -> Token 0x306ed7ee -DEBUG azoth_transform::obfuscator: Selector 0x5a4fd645 -> Token 0x753a624f -DEBUG azoth_transform::obfuscator: Selector 0xede7f6a3 -> Token 0xe1be5dbb -DEBUG azoth_transform::obfuscator: Selector 0x2feef2ec -> Token 0xac5a2ffa -DEBUG azoth_transform::obfuscator: Selector 0x1aa7c0ec -> Token 0xa8abc0a3 -DEBUG azoth_transform::obfuscator: Selector 0x80f323a7 -> Token 0x80f130e7 -DEBUG azoth_transform::obfuscator: Selector 0xf3a504f2 -> Token 0x0f9c0474 -DEBUG azoth_transform::obfuscator: Selector 0xfe03a460 -> Token 0x395ec66a -✓ Contract obfuscated (11779 -> 16091 bytes, +36.6%) -✓ Extracted 19 selector mappings -Selectors found: - 0x81972d00 -> 0x9bbfb1f4 - 0x8677ab23 -> 0x2dd1abc1 - 0xd415b3f9 -> 0x569bee5a - 0x8bd03d0a -> 0x1a6ea280 - 0xa65e2cfd -> 0xe224c59d - 0x9940686e -> 0x994049e6 - 0x046f7da2 -> 0xae6e97f9 - 0x3ccfd60b -> 0x0ca2d6c9 - 0xcb766a56 -> 0x1ce46a9e - 0x33ee5f35 -> 0x4020961c - 0xd4899a62 -> 0xd4162d29 - 0x308657d7 -> 0x306ed7ee - 0x5a4fd645 -> 0x753a624f - 0xede7f6a3 -> 0xe1be5dbb - 0x2feef2ec -> 0xac5a2ffa - 0x1aa7c0ec -> 0xa8abc0a3 - 0x80f323a7 -> 0x80f130e7 - 0xf3a504f2 -> 0x0f9c0474 - 0xfe03a460 -> 0x395ec66a -✓ Created EscrowMappings with obfuscated tokens - -=== Deployment Result Details === - Status: SUCCESS - Gas used: 3374762 - State changes: 3 accounts modified - touched 0xD1f176B2a6780571094fBB18B02b39D8b8dEeC37 -> nonce=1, balance=0, storage=0, code_len=15340 - touched 0x0000000000000000000000000000000000000000 -> nonce=0, balance=0, storage=0, code_len=0 - touched 0x4242424242424242424242424242424242424242 -> nonce=1, balance=1000000000000000000, storage=0, code_len=0 -✓ Obfuscated contract deployed at: 0xD1f176B2a6780571094fBB18B02b39D8b8dEeC37 - -=== Validating Deployed Bytecode === -DEBUG heimdall_disassembler::core: fetching target bytecode took 1.338008ms -DEBUG heimdall_disassembler::core: disassembly took 4.339403ms - INFO heimdall_disassembler::core: disassembled 15341 bytes successfully -DEBUG heimdall_disassembler::core: disassembly took 5.720223ms - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x39c5, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x39c6, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x39cb, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x39d1, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x39d6, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x39d9, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x39de, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x39e4, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x39e5, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x39e6, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a15, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a16, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a33, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a41, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a42, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a44, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a58, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a5c, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a65, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a6d, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a6f, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a75, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a93, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3a95, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3ac2, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3ac8, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3ad3, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3ad5, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b0b, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b0c, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b0f, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b17, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b18, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b1f, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b20, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b29, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b2a, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b2b, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b2d, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b33, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b34, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b35, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b6f, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b71, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b72, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3b96, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3bbe, using INVALID as placeholder (byte will be recovered from original during encode) - WARN azoth_core::decoder: Unrecognized opcode 'unknown' at PC 0x3be9, using INVALID as placeholder (byte will be recovered from original during encode) -Obfuscated deployed bytecode has 651 JUMPDESTs -Obfuscated deployed bytecode jump statistics: - Total jumps: 664 - Valid jumps: 664 - Invalid jumps: 0 -✓ All PUSH+JUMP pairs target valid JUMPDESTs - - Calldata (obfuscated): 0x1ce46a9e -Call result: Ok(ExecResultAndState { result: Success { reason: Return, gas_used: 23763, gas_refunded: 0, logs: [], output: Call(0x0000000000000000000000000000000000000000000000000000000000000000) }, state: {0x4242424242424242424242424242424242424242: Account { info: AccountInfo { balance: 1000000000000000000, nonce: 2, code_hash: 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470, code: Some(LegacyAnalyzed(LegacyAnalyzedBytecode { bytecode: 0x00, original_len: 0, jump_table: JumpTable { map: "" } })) }, transaction_id: 0, storage: {}, status: AccountStatus(Touched) }, 0xd1f176b2a6780571094fbb18b02b39d8b8deec37: Account { info: AccountInfo { balance: 0, nonce: 1, code_hash: 0x86fc342531db13c1156ebd279e096e07a8f81a9135b33efa6cab5f8c474d26c2, code: Some(LegacyAnalyzed(LegacyAnalyzedBytecode { bytecode: 0x60806040526004361015610011575f80fd5b5f3560e01c8063ae6e97f914613834578063a8abc0a314613846578063ac5a2ffa1461385d578063306ed7ee1461386f5780634020961c146138865780630ca2d6c914613898578063753a624f146138af57806380f130e7146138c15780639bbfb1f4146138d85780632dd1abc1146138ea5780631a6ea28014613901578063994049e614613913578063e224c59d1461392a5780631ce46a9e1461393c578063569bee5a14613953578063d4162d2914613965578063e1be5dbb1461397c5780630f9c04741461398e5763395ec66a146139a5575f80fd5b610a3b565b610a16565b610781565b610747565b61072a565b610706565b6105cb565b610462565b610445565b610401565b6103ae565b610391565b610375565b610239565b61021c565b6101fa565b6101c0565b610198565b34610194575f36600319011261019457610188337f00000000000000000000000042424242424242424242424242424242424242426001600160a01b031614610a58565b6007805460ff19169055005b5f80fd5b34610194575f366003190112610194576003546040516001600160a01b039091168152602090f35b34610194575f3660031901126101945760206040517f00000000000000000000000000000000000000000000000000000000000000008152f35b34610194575f36600319011261019457602060ff600754166040519015158152f35b34610194575f366003190112610194576020600454604051908152f35b34610194575f366003190112610194576102a1600161025e60075460ff9060081c1690565b61026781610aa4565b610299828060a01b037f0000000000000000000000004242424242424242424242424242424242424242163314610a58565b151514610b1f565b6102a9611739565b61030b60206102bd60015460025490610cfb565b6102cd61ff001960075416600755565b6102d65f600155565b5f80556102e4811515610d08565b60405163a9059cbb60e01b8152336004820152602481019190915291829081906044820190565b03815f7f00000000000000000000000011111111111111111111111111111111111111116001600160a01b03165af180156103705761034657005b6103679060203d602011610369575b61035f8183610d67565b810190610d8e565b005b503d610355565b610da6565b34610194575f3660031901126101945760205f54604051908152f35b34610194575f366003190112610194576020600554604051908152f35b34610194575f366003190112610194576103f2337f00000000000000000000000042424242424242424242424242424242424242426001600160a01b031614610a58565b6007805460ff19166001179055005b34610194575f366003190112610194576040517f00000000000000000000000022222222222222222222222222222222222222226001600160a01b03168152602090f35b34610194575f366003190112610194576020600154604051908152f35b34610194576020366003190112610194576004356104a76104a261049e6007546104986104938260ff9060081c1690565b610aa4565b60ff1690565b1590565b610db1565b5f546104be6104b68260011c90565b831015610df6565b60045480151590816105c1575b5061058f575b506104e56104e061049e611172565b610e9f565b6040516323b872dd60e01b815233600482015230602482015260448101829052906020826064815f6001600160a01b037f0000000000000000000000001111111111111111111111111111111111111111165af19182156103705761036792610572575b50600380546001600160a01b0319163317905561056d61056842610ccb565b600455565b600555565b61058a9060203d6020116103695761035f8183610d67565b610549565b60055461059b91610cfb565b5f556105b36105ae600554600654610cfb565b600655565b6105bb611739565b5f6104d1565b905042115f6104cb565b346101945760403660031901126101945761065a60243561065560043561061c6001600160a01b037f0000000000000000000000004242424242424242424242424242424242424242163314610a58565b61063761063261049e60075460ff9060081c1690565b610fe7565b610642811515611077565b61064d8315156110c3565b805f55600255565b600155565b61069b602061066e60025460015490610cfb565b6040516323b872dd60e01b8152336004820152306024820152604481019190915291829081906064820190565b03815f7f00000000000000000000000011111111111111111111111111111111111111116001600160a01b03165af18015610370576106e9575b61036761010061ff00196007541617600755565b6107019060203d6020116103695761035f8183610d67565b6106d5565b34610194575f366003190112610194576020610720611172565b6040519015158152f35b34610194575f366003190112610194576020600254604051908152f35b34610194575f3660031901126101945760206040517f00000000000000000000000000000000000000000000000000000000000001008152f35b346101945760403660031901126101945760043567ffffffffffffffff811161019457806004019060a06003198236030112610194576109ea9160209161095d61095860846108e6602435956107e061049360075460ff9060081c1690565b6003546001600160a01b03169661088d9033891480610a03575b6108039061118a565b61080f438211156111d5565b61084461081c824361123e565b7f0000000000000000000000000000000000000000000000000000000000000100101561124b565b6108748140610854811515611310565b610868610861868061135c565b36916113ab565b8c8151910120146113e1565b610887610881848061135c565b90611a19565b1461142d565b6108a061089a828061135c565b90611c2d565b906108e16108dc60248901936108b6858561135c565b9060648c6108d46108ca604483018a61135c565b939092018961135c565b949093611ce9565b611513565b61135c565b9190940135937f000000000000000000000000111111111111111111111111111111111111111180957f0000000000000000000000000000000000000000000000000000000000000000937f000000000000000000000000222222222222222222222222222222222222222293611e91565b611631565b61097761096e6005545f5490610cfb565b60015490610cfb565b600380546001600160a01b0319169055916109915f600555565b61099a5f600455565b6109aa61ff001960075416600755565b6109b35f600155565b5f80805560405163a9059cbb60e01b81526001600160a01b0390921660048301526024820193909352938492839182906044820190565b03926001600160a01b03165af180156103705761034657005b50610803610a0f611172565b90506107fa565b34610194575f36600319011261019457602060ff60075460081c166040519015158152f35b34610194575f366003190112610194576020600654604051908152f35b15610a5f57565b60405162461bcd60e51b815260206004820152601d60248201527fadb2e11b90c5bd4f35c7886e31b623316dbb327698940ddf17856be4f2aa9a036044820152606490fd5b15610aab57565b60405162461bcd60e51b81526020600482015260136024820152600061321660203960005167ed8ed47a17f9060718673cecbd313687c97518674a98a79091b2abac186717753d24d50737d5181863f726c5b5036330bb295a036361f7fd7a039003614d559003606a1b6044820152606490fd5b15610b2657565b60405162461bcd60e51b8152602060048201526037602482015260006132366020396000516000613256602039600051017f08228020212024103a24c0d04002832030081a805100019100c0e8954200004417600302616a8d186f1f10a20087de46a79e5aead386db0ebf016f62ac9df78db7876ec19fc4cf321b3430036ffe0c7379090734ecb8b5a798f446c96a036f4fc230ee4f775a6a450a07d29a0da89c030160448201527f10e5a42ca5d4250ac9312dcbc65ee6ff7882a5add19612eadb13e57f3c0fb850678e7f20391b10fd51016725ef6125332872a9016759da2a79555f57c901016370d06fb70363332081990363b21d1ffd016314535784019003600b02677bca71fa3c14b204186765d4766e9fe41601180161ec5290036724e922842da5f11c0167a5e4d6e6399e26a40167a47c6b3d9dce12a601187fd8ad2d894578f956c16e96a8e87688da4cf16c1d6016a9184a5222e63ab2083318637cfde2d201634e5459520163378023a10163f83ff6770190036064820152608490fd5b631e31fd4a1863fabd695a1863aac4ef611860e01b5f52601160045260245ffd5b9061012c8201809211610cda57565b610caa565b9060018201809211610cda57565b6001019081600111610cda57565b91908201809211610cda57565b15610d0f57565b60405162461bcd60e51b8152602060048201526015602482015274bff7f9f7c59907f97268de3b41dc8e19ffd710512560581b6044820152606490fd5b6351a87fa70363600f04e80360e01b5f52604160045260245ffd5b90601f8019910116810190811067ffffffffffffffff821117610d8957604052565b610d4c565b90816020910312610194575180151581036101945790565b6040513d5f823e3d90fd5b15610db857565b60405162461bcd60e51b815260206004820152601660248201527510d85b98d95b1b185d1a5bdb881c995c5d595cdd195960521b6044820152606490fd5b15610dfd57565b60405162461bcd60e51b815260206004820152602b60248201527ff8ca5fca02cd775cc0cc88c4ada13b63bc7e81259322bdad9fc1d8aba668ea6a7fdf7f7e74f9fff57b74317675e7f37d2d7ced63f3fde97f616ffe2afef7c92ded1660006132766020396000510160448201526aef17fe807e0bd0d15c04dc016ad5f700e98f2664b3681653036afb48a0fde6cd10c21692ec0360aa1b6064820152608490fd5b15610ea657565b60405162461bcd60e51b815260206004820152602260248201527f15cc1956c2cc20b556d2cacb6c6ac1105674e5a363d5be58c0c04447cc1cd9cc6ffe90cdec2f75531b29219d73116bc095186fe60a6c05ae73c7647e5104e0304e65d5186f4450f181e6f88981d639826f70020579186f7c49bac1fb2abf6a320641e8ac8815e618016fe2f53760ae9b3ecb3c2e50926cfa7b19016f82a5ff8598b80c3492a7c7c72ed8c403016fece8dbfd72bca90640adbc131c961a31036f0af9128dc6bc27d0ef21979973a52bef03186003026315434c2b1863ef6dd62e180160006132966020396000511760006132b6602039600051176f73bbfbca09d80b53fb5d2535e4172d3f016ffa976b454b4c498d68ac23c34641c9cc016f5a4f41cdcdd74c122e3d1d48f23ca54a0101604482015261195960f21b6064820152608490fd5b15610fee57565b60405162461bcd60e51b815260206004820152601760248201527f436f6e747261637420616c7265616479e31284bfcdb78fd8142b9c4454f0d90e6f4fc19089ddec2007f4634aa9fd24d91b186fd1f79b6194ffe11f5a462b83c19233a8186f5c9a04b92041eac0ba0efd694febc10b18900360006132d6602039600051186044820152606490fd5b1561107e57565b60405162461bcd60e51b815260206004820152601e60248201527f4c25e699040683bdada8e88c6721e7d56ecce32a09c8179e3caa3bc4e3c9b30b6044820152606490fd5b156110ca57565b60405162461bcd60e51b815260206004820152601f60248201527f0bf824597cf7ae83b4761f29f4faa57dc20e51731c6648c7a83f41c20890e03661ac5f900360039004616645016f534a8d0914ba721f9c1f2c9a85f6c31f186f1273008353f9c6508299a2d560199559186f9aeff55dd9a4f67868cd91eb8d398cd9186f93d99036a31c53543c1de9496d539fd318900360006132f6602039600051016044820152606490fd5b6004548015159081611182575090565b905042111590565b1561119157565b606460405162461bcd60e51b815260206004820152602060248201527f6f0b597464682658e6873e17a615424678100a96a72bebf59633b58695a810ed6044820152fd5b156111dc57565b60405162461bcd60e51b815260206004820152601d60248201527f7248126b9f7413b1dc7f599ba84d75feab7be5764800846fadf66a93dc6d5c176044820152606490fd5b600119810191908211610cda57565b5f19810191908211610cda57565b91908203918211610cda57565b1561125257565b60405162461bcd60e51b815260206004820152601460248201527f149c14eedc6737ac4733a63fa476c41b6cd68f961acdb68ced1a533b310c8ccd619b8b18619c1a90036180f1016007027f6f49dbf72418ef9acbfe3063ddbd7fddfdffebffdbdbffffdfdb8eef5beda67f1667b09b6550b0b3111c01674a5927193ab4165e0367f59b28ea0024a36c03016001027ff8bd4d7c3aaf7a463892cddeb7dafddbdd7d0e18db7fd8fbfb5dfbffeeffdf7b1660621b6044820152606490fd5b1561131757565b60405162461bcd60e51b815260206004820152601d60248201527fc3e041838ba15e22480485b133cd0fa565535066fb619fb5ac895f1f9373ed106044820152606490fd5b903590601e1981360301821215610194570180359067ffffffffffffffff82116101945760200191813603831361019457565b67ffffffffffffffff8111610d8957601f01601f191660200190565b929192610fee8261138f565b91610ffc6040519384610d67565b829481845281830111610194578281602093845f960137010152565b156113e857565b60405162461bcd60e51b815260206004820152601a60248201527fabc6b3c4e91a2980fe57ea86f4c6d8d3843053e089adb6678e944ba7e0c31c526044820152606490fd5b1561143457565b60405162461bcd60e51b815260206004820152601c60248201527ffe6729b2cc82f9a3078d07cde28d0463bf8e9a28af78ae6a3949c53a6fcb35f67f6b8944fa13fd55fc397c692325f2da106d408f96c4ad4085dc9b92f083a0460c18600190047fb8fbebb7f577eedfd2a40fe7dddbf2fff6671fe3abffcdef7ff7ffffa7ffbff0166380d43b2901634487b0660190036390d78e9b1863e07a73f41863be76adcf1863524da39b1890037fd88f0864b0058c3d7ecf6d8de535a71eb023678246bcbf8204a634a14278e54818617e2f1861ce41186044820152606490fd5b1561151a57565b60405162461bcd60e51b815260206004820152601960248201527fd67e1fd60c59571887de9092cd995182a02b0621672578e76a66e56db420d4ec67a4d05a72816e467b01679cc28303eed2703d0367243c8c1bb5f0418003016fcb7aa8948e9e0a8892083c229d4ab7a3186f43ac4d32a18e2b952ff0feaaf3c1cac51890037fafc5a06bd7b668e76c086f2d617ae779eaaade0553ea18343790db47dc96417f187f7febfffddbdf7ffffff6fe37beffaffefffffe6feff6df7dbfe7f47dfeffffbf167ffaebfa7eeeffffaff9d7f7bdd91ddf9fffffff7d7dfddbce2f7ff5ac7fd69e3a167f2f3d43db5e65db8f777192d01e91127ab0aeaa4bf981dbdcc127b42c7ed7490b900361bcd1016044820152606490fd5b1561163857565b60405162461bcd60e51b815260206004820152601660248201527f4647ddb50e8ad6a6f11504319aaf4bb83d84303d14cf58881585a25b4daf3a1a673edd47452c3053611867a9c7ce544651b9f1186739299da8e9a0bd40180163cdc1507018633258a8aa18630ea80f191863c5e54b5c1818600061331660203960005190036f0df779ba4da27d1de0b8bc5e4f158d96036fd286baed8d53baadde879b15f7d4a50503186f3cf1c33323290bc5178e786127398a1b016f0abd3cc692a8b14a229d9c22e7d0b7be036f1e1998612d200240d4d2c6d8b6512b68036f43db3233075bde34d9965af833994fc9039003614697900360521b6044820152606490fd5b611149611172565b611766576bffffffffffffffffffffffff60a01b600354166003555f6005555f600455565b60405162461bcd60e51b815260206004820152602160248201527f47616f6eef77a272e5f76574207f6e697def3066ff6e74eba5efcabe0851de5e6113700167b7c34f7f9560b32201673f8d6f9b161baaf8036791a2cac24a36550403900361ab0c900361b7e701672405a5712a2634bb016715bfee4c71ce73830367ac3506be36b688130167db6581030007674c010167c6f0c93987ab6e031867c81713fd6b23f41e18670eabbed34475269b1867db85a818aaa47a3d1890037f53ffeeff6f7c357b7d7bfffffdf7f9fdee75ebeb6f7f6d34eff7f0eb1f7ff5ee1663a781df5f0163a2a520c1036348d1f2c60390036044820152606560f81b6064820152608490fd5b63fd86ddcf0163704567f20363f25dfd6303634c9afd090360e01b5f52603260045260245ffd5b901561189b5790565b61186b565b9082101561189b570190565b156118b357565b60405162461bcd60e51b815260206004820152601060248201527e1448032829020c2040c0000200a2a6939b98b27b13591990535917846f57d461db0c017ffee382e853d0e930c32808fbf9774c516a1bef995b3effce7eb124a70ffb9bfa166ec44de153ba74ac4d50ad69ee687238036e2b159eac45434b9e2f42956e346d380317639467835a0163df3e01800101616afd90036f047ff6b77e47123de021b1f658247e32016fadfdd66b44325cb3c164112c286a903f016f85573386cdeb666fb5d09b22e9c7234a016fd87c10de6fa32a9ebcabb5c295ac2259011760821b6044820152606490fd5b60ff60f6199116019060ff8211610cda57565b60ff60bf199116019060ff8211610cda57565b60ff60b6199116019060ff8211610cda57565b60ff607f199116019060ff8211610cda57565b60ff166001019060ff8211610cda57565b80511561189b5760200190565b90815181101561189b570160200190565b91905f6112dc600360fe1b6001600160f81b03196112d46112c68689611892565b356001600160f81b03191690565b1610156118ac565b601f60fb1b6001600160f81b03196112f76112c68588611892565b1610611b15578061132b61049861132661132161131b6112c661133197898c6118a0565b60f81c90565b61199e565b6119ea565b90610cfb565b905b5f5b60088110611b005750611348929361225b565b505f9190825b8151841015611afb5760019060081b61137e61049861131b6113708887611a08565b516001600160f81b03191690565b17930192611ac2565b925050565b9161139a6001918387612082565b9201611aa9565b50600190611aa7565b15611b2557565b60405162461bcd60e51b815260206004820152602160248201527fdd4fe724d77e3c6577302a303c515ffdee9dffb7aff7479ffff31dae7e07efc47ffefb63ee6d3ceff15ff62ebbff73dd5be7abfeefaa976ffd7ff67cb6ea567eb7166f8579f77bd5f8a87b2d3834b0dbb04df1186ffd277a1a80452d2fc560fb4ea561b158186f480982906e6d160051f864cc777e7cc4186f20f4dd01ff973e68a55d920c919b720f18016e153a89a3fc98bbf1c238c91cb9c3bd186e2776d84260152a09e9384a7822be76186eff2b9b8ad09eb22d9735a205fae31f186eed1b09995be33511fcc0642a9311c8180161b3b89003600390046044820152606760f81b6064820152608490fd5b9091905f611422600360fe1b6001600160f81b03196112d46112c68887611892565b601f60fb1b6001600160f81b031961143d6112c68786611892565b1610611ce1578061132b61049861132661132161131b6112c6611461978b8a6118a0565b5f5b60058110611ccc575061149561149a929394600560fd1b9061148e6112c68560ff60f81b93896118a0565b1614611b1e565b610cdf565b013590565b906114ad6001918685612082565b9101611c90565b506001611c8e565b6114d26114da929394956114e0989736916113ab565b9236916113ab565b9061251e565b90565b15611d1757565b60405162461bcd60e51b815260206004820152601360248201527f1e9438793f135a22938bd86f6c26c4f9b9d18f698ba13f857e9392b3129162eb7fe16bc786c0eca5dd6c74279093ddd1edac45372cb665e6d0b7c304542f7457db01600061333660203960005118606c1b6044820152606490fd5b15611d9457565b60405162461bcd60e51b815260206004820152601060248201527f558162d93b8f3fc5a37d7e277929e2566fce6f6ca735927e100f6e038651e4f37fb57fe274fa4abfa5a16d6d216fa99bc21879fd0e3e6a0eeeb8867cfffba3a7a490036f21171abf88613e2a01946e4fe77981d6016f6ea56fab17a755f626b4c35d7b476f26019003616a2c017f5fae7d1ab2a311c77de3ee6916332142fa7bfdff3fea5d37efeffbfcffdefd6f1667a6f752de11baaba318679a621aeac7cdadfb18675d7cd5679b8cdf2c1818600b90046eb43697fe2861de2cd90553215a3b84036e3b2927eb918bdfcd201438bca4bff8031760841b6044820152606490fd5b959493929190805f818981151580611fde575b611fd5575b60ff61159461131b6112c68661159c9660c0966118a0565b161015611d10565b8860f860ff6115b261131b6112c68688876118a0565b1610611fc35761049861132661132161131b6112c6866115d59861132b976118a0565b81905b885f5b60038110611faa575060c06115fd61049861131b6112c68688611604976118a0565b1015611d8d565b8860f861161b61049861131b6112c68688876118a0565b10611f995761049861132661132161131b6112c68661163d9861132b976118a0565b915b5f905b808210611f825750506114e0959661279f565b9092611664600191848b612082565b930190611f6f565b506116779150610cdf565b91611f6c565b929160019261168b92612082565b910190888392611f08565b506116a19150610cdf565b8190611f05565b60019250611ea9565b50608060ff6116c661131b6112c68686611892565b1610611ea4565b1561200157565b60405162461bcd60e51b815260206004820152601860248201527f524e582a6f6e667367f4287f7ffda47fe738e2ef7d6e6cf36023f000d9fff9be7ffffcd2f5ef77ff7b7d75a6ef75766a6f6e26737ff5ffe77f9f900f3dc5f1ffff1663b499b2de0163354b71c901637135c3b5016366d711620190036044820152606490fd5b9190611726818310611ffa565b61173761131b6112c68484876118a0565b9060ff821660808110156120bb575050506114e09150610cdf565b91929160b88110156120e35750506114e0925061049861177461132b92610cdf565b926119d7565b90929060c081101561215e5750610498611796919493946119c4565b915f935f915b848310612125575050506114e092916117b76117b792610cdf565b610cfb565b9091946117cb60019160081b90565b6117eb61049861131b6112c66117e48b6117b78b610cdf565b88886118a0565b1795019190612105565b90929060f8111561218457506114e0925061049861181561132b92610cdf565b926119b1565b92916104986118299161199e565b915f935f915b8483106121b3575050506114e092916117b76117b792610cdf565b90919461185960019160081b90565b61187261049861131b6112c66117e48b6117b78b610cdf565b1795019190612198565b6040805190919061188d8382610d67565b6001815291601f1901366020840137565b604080519091906118af8382610d67565b6014815291601f1901366020840137565b906118ca8261138f565b6118d76040519182610d67565b82815280926118e8601f199161138f565b0190602036910137565b6118fd828410611ffa565b61190e61131b6112c68585856118a0565b9260ff841660808110156122b157505050506119286121e5565b9060f81b6001600160f81b0319165f1a611941826119fb565b5390600190565b60b881969592939496105f1461231f5750610498611965916119d7565b9161196f83612229565b945f5b8481106122ef57505050506114e090610ced565b806119a36112c661199c6001946117b789610cdf565b85876118a0565b5f1a6119af828a611a08565b53016122db565b60c011156123c0576104986119ca916119c4565b905f925f5b83811061239157506119e084612229565b955f5b8581106123645750505050906117b76114e092610ced565b80611a156112c661199c6001946117b78a6117b78b610cdf565b5f1a611a21828b611a08565b530161234c565b9360019060081b611a4f61049861131b6112c6611a488a6117b78a610cdf565b8c886118a0565b179401612338565b60405162461bcd60e51b815260206004820152601e60248201527f85ad1ce7eaa2a4c842d0f1e3a77427a6668ecf70c0583e0e686f401f2f77219467ed7eb3f2b09df3d20167b177bfc56f5f1ab20167de8d6f9632d531690167058c3e0af46fb0d5010163efb71aa30163282f7b45016320b0147e010167f372fbd4ed26d8fa1867157c9ff88b636fae1890036755312f57fd49bd0d0167871f88fb91284ef2016741e35209c57106a5036724c669140ef94f080390036044820152606490fd5b1561248857565b60405162461bcd60e51b815260206004820152602160248201527f17ca7ec893e3373c833fb1a5b5b8797eb15209d50d3728b9d94daefc2eb56fdd600061335660203960005101600061337660203960005190037fd7f978f7e777fd7f2d7ffd5d35fcfbf7777a7f7ff76cf2fbfff6ffc2ec3df9b2166000613396602039600051186044820152607360f81b6064820152608490fd5b919390929190611b1e600360fe1b6001600160f81b0319611b166112c6878a611892565b161015612481565b601f60fb1b6001600160f81b0319611b396112c68689611892565b16106126b657611b5d611b5861049861132161131b6112c6888b611892565b610ced565b9492905b945f5b8282106125a257505050505050505f90565b611b94611b8d83611b8836878a6113ab565b612854565b9093610cfb565b96825160208401200361265457600360fe1b611bc2611bb5611370856119fb565b6001600160f81b03191690565b10612654578590846001601f60fb1b611be0611bb5611370886119fb565b1015612698575b611bf181866129de565b6011810361265f5750611c0394612b70565b9491156126545784156126485793915b91959093612590565b50505050505050600190565b505050505050505f90565b90935060021415905061268c57848792611c4c94612a2a565b94911561265457841561264857939161263f565b50505050505050505f90565b50611c85611b5861049861132161131b611370896119fb565b612613565b600194929061258d565b156126c757565b60405162461bcd60e51b815260206004820152600f60248201526ef3a78face89c5563a9c9bf82fc8cf2016e10ef57b92e2a40de5cfd36ef0897d301608c1b6044820152606490fd5b1561271757565b60405162461bcd60e51b815260206004820152601e60248201527fd50398ec946c62144a50fd022f9a507742bef4a1575c99bd837c0c164141fa996044820152606490fd5b1561276357565b60405162461bcd60e51b815260206004820152601460248201527315dc9bdb99c81d1bdad95b8818dbdb9d1c9858dd60621b6044820152606490fd5b9160146114e09695946117b784611dfd948781611d9460c060ff611d8c61131b6112c6868a896118a0565b1610156126c0565b60f860ff611da961131b6112c68589886118a0565b1610612841575061049861132661132161131b6112c686611dcd9861132b976118a0565b915b611dda838789612c85565b9490611de882825114612710565b01516001600160a01b0390811691161461275c565b91612fe1565b915050611e109150610cdf565b9161280d565b611e2281518310611ffa565b611e3261131b6113708484611a08565b9160ff83166080811015612889575050506119286121e5565b919392909160b88110156128f35750610498611e66916119d7565b90611e7082612229565b935f5b8381106128c4575050506114e090610ced565b80611ea2611370611e9c6001946117b788610cdf565b85611a08565b5f1a611eae8289611a08565b53016128b1565b60c0111561299157610498611ec9916119c4565b5f915f5b8281106129635750611ede83612229565b945f5b84811061293657505050906117b76114e092610ced565b80611f12611370611e9c6001946117b7896117b78a610cdf565b5f1a611f1e828a611a08565b530161291f565b9260019060081b611f4b61049861131b611370611f45896117b789610cdf565b8b611a08565b17930161290b565b5091611f5f8382613139565b92611f6984612229565b915f5b8581106129b8575050509190565b80611f8d611370611e9c60019487610cfb565b5f1a611f998287611a08565b53016129aa565b5f915b8151811015612a0f57611fb68183613139565b8101809111610cda57915f198114610cda57600101916129e1565b505090565b908160011b9180830460021490151715610cda57565b83949291611ffa8183612854565b9390612019602061201061131b611370856119fb565b16151591613269565b97889115612af9575061202d905187610cfb565b6120378251612a14565b14612a8a575b505050505050505f905f905f90565b86866001928251612ae7575b505050612aa4575b80612a7b565b6120799261207391610cfb565b90612854565b5060208151910120906020815191012014612ad55780808080612a9e565b6120a2915190610cfb565b6001915f90565b6120b393506133cf565b86865f612a96565b6120cc939495965061049e926133cf565b612b63576120dd9261207391610cfb565b50908151602081145f14612b43575060206120fd920151925b5190610cfb565b916001929190565b8015612b575760206120fd93012092612b34565b505050505f905f905f90565b50505050505f905f905f90565b919092936121408251612a14565b851015612c28575061131b6113706121629261215c8760011c90565b90611a08565b60018416612c1f5760041c600f16915b905f925b60ff81168410612bff575061218b9250612854565b5080518015612bf4576120fd9160208203612bea5760209150015191610cdf565b6020012091610cdf565b5050505f905f905f90565b909160016121d58261132b60ff9487613139565b94019392919050612bb4565b600f1691612bb0565b9290509392935f915b60108310612c6b576122059250612854565b50602081519101209060208151910120145f14612c6257600191905f90565b5f915081908190565b9061223e8161132b60019385613139565b92019190612c31565b919091612255838310611ffa565b609460ff61226a61131b6112c68688876118a0565b1603612cf457612278612207565b925f5b60148110612ccb575050505090601590565b806122a36112c661199c6001946117b789610cdf565b5f1a6122af8288611a08565b5301612cb9565b60405162461bcd60e51b815260206004820152601c60248201527f015961d9f9b9f05f2e5ca2fc01435f9e7b4bc5e92e825f30855340bd20dd92ba613aa790037f483717b895d0947f4f38c68e64302cbe290795c94bec3c5fe13a2eda20dd5813186044820152606490fd5b15612d6757565b60405162461bcd60e51b81526020600482015260126024820152710496e76616c696420746f7069637320524c560741b6044820152606490fd5b15612da857565b60405162461bcd60e51b815260206004820152601560248201527f1dd33e28b1d9432353170da20676d4626a9c9e4d0fb51a2bbb05ef285e6dc0ab61873c0163504dbcab0163fa6b63380190036747194acd5891b72d016727729041c4c136a101672471bd531c712cc80367418eafd67f31b492031860006133b660203960005190036158e9016165e0017f12478dabdac12bcb3486df777b7f7ee778eda36dffaffb57ef7afded7fceef77166fe2bcda79036f3be04f406990e92120ca016fac1bbc213f69fc9ef5dbdda2617e7495036f0678c94f932cf5dc4c4ead627ba313d2031860581b6044820152606490fd5b15612ea057565b60405162461bcd60e51b815260206004820152601360248201527fa54cbea4b7996710ce239be689f6f02ac5cf93a727f842fde304b19781c0939a600e900461c64990036137af1863e29621a901633e229d070363bfe915f40163e290610a011860006133d6602039600051187f0bce9fe731af875ca1028b22c0b3b0d9e162472e3aae7c12a8244ff87ad199639003720889840400008c0c862a4401ad0601a00c886817606b1b6044820152606490fd5b15612f5957565b60405162461bcd60e51b81526020600482015260146024820152732b456ec4052ae788e73485f61410a2dc5131e5cc60601b6044820152606490fd5b15612f9c57565b60405162461bcd60e51b815260206004820152601860248201527f130436046c83d9f1f517e2dfc7d3aaef733fe2e5b7816cfc7a596fbd6818e25d6044820152606490fd5b91806125336125409561252061251461251461250d612506896124ff7f6ef929568df1644db4e158347e1bc6d54a95d3f8b1e2508b147aad2689a469c860020261352a0163e66abb55186124f98e8060f861253a9f6124cd61131b6112c6836124c660c060ff6124be8f6112c6839a61131b92819e6118a0565b161015612d60565b8b886118a0565b161061312f578061132b61049861132661132161131b6112c66124f1978d8a6118a0565b94859161348d565b14612da1565b8a8c612082565b898b612082565b888a61348d565b6001600160a01b031690565b6001600160a01b03908116911614612e99565b8284612082565b916134ff565b5061254f602082511115612f52565b5f92835b825185101561311b5760019060081b61257561049861131b6113708988611a08565b179401936130f0565b90935061258d92915014612f95565b600190565b506124f18d610cdf565b906125a982518210611ffa565b6125b961131b6113708385611a08565b9160ff8316608081101561316d5750505050600190565b60b8811015613188575050506104986113266114e0926119d7565b60c08110156131f4575091610498612602916119c4565b905f925f915b8383106131bc57505050906117b76114e092610ced565b90919361262e60019160081b90565b61264d61049861131b6113706126478a6117b789610cdf565b88611a08565b17940191906131a5565b60f8111561320d5750506104986113266114e0926119b1565b9161049861267d9161199e565b905f925f915b83831061323757505050906117b76114e092610ced565b9091936126a960019160081b90565b6126c261049861131b6113706126478a6117b789610cdf565b1794019190613220565b908151156133cd576126e361131b611370846119fb565b601081161561334f576127066127016126fc8551612a14565b611230565b612229565b9060f81b600f60f81b165f1a61271b826119fb565b5360015b835181101561334a578061275a61274a61274161131b6113706001968a611a08565b60041c600f1690565b60f81b6001600160f81b03191690565b6127736127696126fc84612a14565b915f1a9185611a08565b5361279a600f61278961131b611370858a611a08565b1660f81b6001600160f81b03191690565b6127a661276983612a14565b53016132bc565b509150565b506127c86127016127c38451612a14565b611221565b60015b835181101561334a57806127ed61274a61274161131b6113706001968a611a08565b6128016127696127fc84611230565b612a14565b53612817600f61278961131b611370858a611a08565b6128296127696114956127fc85611230565b5301613368565b565b919091612840825184610cfb565b61284a8251612a14565b10613486575f5b825181101561347d5761286d6128678286610cfb565b60011690565b61345f5761289661274161131b61137061289061288a868a610cfb565b60011c90565b86611a08565b60ff6128ab61049861131b6113708689611a08565b911603613457576001016133ee565b505050505f90565b600f6128da61131b61137061289061288a868a610cfb565b16613433565b50505050600190565b5050505f90565b9190600560fd1b906001600160f81b03199061290e908490866118a0565b3516036134ba57016001013590565b60405162461bcd60e51b815260206004820152601760248201527fe7d57c48a7e98c8f60d4a8cfd2f7f15715ff0d1d166f6040cca78faba83b5bdc6044820152606490fd5b61296d828410611ffa565b61297e61131b6112c68585856118a0565b9260ff8416608081101561353557505050506119286121e5565b60b881969592939496105f1461359c57506104986129b5916119d7565b916129bf83612229565b945f5b84811061357357505050506114e090610ced565b806129ec6112c661199c6001946117b789610cdf565b5f1a6129f8828a611a08565b530161355f565b60c0111561363657610498612a13916119c4565b905f925f5b83811061360e5750612a2984612229565b955f5b8581106135e15750505050906117b76114e092610ced565b80612a5e6112c661199c6001946117b78a6117b78b610cdf565b5f1a612a6a828b611a08565b53016135c9565b9360019060081b612a9161049861131b6112c6611a488a6117b78a610cdf565b1794016135b5565b60405162461bcd60e51b815260206004820152601e60248201527f9c573f5db4f42053e5e13be8f9bd35b0bc33acf45f3cbbd1911652f356d540f360006133f6602039600051017f57f9f9e7e774ed6e2b7ff47fe97e67af6561767b3d266f6f7db46ff9737600d8166044820152606490fdfe5bfe5b60016000146136aa5761012b565b6136ac565bfe5b60016000146136bf5760ef565b6136c1565bfe5b60016000146136d35761010d565b6136d5565bfe5b60016000146136e85760f4565b6136ea565bfe5b60016000146136fc5760f9565b6136fe565bfe5b600160001461371057610144565b613712565bfe5b600160001461372557610108565b613727565bfe5b600160001461373a5761013a565b61373c565bfe5b600160001461374f5761013f565b613751565bfe5b600160001461376457610130565b613766565bfe5b600160001461377957610126565b61377b565bfe5b600160001461378e57610121565b613790565bfe5b60016000146137a357610103565b6137a5565bfe5b60016000146137b85760fe565b6137ba565bfe5b60016000146137cc57610117565b6137ce565bfe5b60016000146137e157610135565b6137e3565bfe5b60016000146137f65761011c565b6137f8565bfe5b600160001461380b57610112565b61380d565bfe5b60016000146138205760ea565b613822565b61bf6a54156137205761371056613720565b60003560021a60c0146138585761374f565b61375f565b61fead541561374a5761373a5661374a565b60003560001a603014613881576137e1565b6137f1565b61e6fe54156137745761376456613774565b60003560021a60d6146138aa576136aa565b6136ba565b61d66254156137895761377956613789565b60003560001a6080146138d35761378e565b61379e565b61a0dc5415613806576137f656613806565b60003560021a60ab146138fc576137cc565b6137dc565b615a55541561381b5761380b5661381b565b60003560001a609914613925576136d3565b6136e3565b617b0254156137355761372556613735565b60003560021a606a1461394e576137a3565b6137b3565b61f46e54156137c7576137b8566137c7565b60003560001a60d414613977576136fc565b61370b565b61a9cb54156136f7576136e8566136f7565b60003560021a6004146139a0576136bf565b6136ce565b61bcb8541561382f576138205661382f560000000000000000000000000010dbdb9d1c9858dd081b9b5187ea62b474292e1400cc60000520c153550b912027cb261b48521b6e94c049818db146a10188b6000000000000000000000000000000000000000000000000000000000000c0d000000000000000000000000000000000000000000000000000000000ae57688400426c3400401000202024224424486104008a0208400101891c021004808201410c0740202552004540610134302c10074280011620c0310e1a00880418d00700000000000000000000000000000000000000000000000000000000e193ad5600000000000000000000000000000000000000000000000000000000089210694647ddb50e8ad6a6f114f1d5fd16f09d06be14904365799e245ccd07dba1f9700000000000000000000000000000000000000000000000000000000000009e0300000000000000000000000000000000025b05fe2c2a1956db9c4a3401f59636b24e086327e6d157e0ed62b4cd4a100b3708a8e3bf3fd19aa31c925cc4f6b6800000000000000000000000000000000000000000000000007eab00e2065b2df7b532de188dcc82f352ef0cca9006e5f2d64d2addb0c8b1154f16d1ce1269e8b3000000000000000000000000000000000000000000000000000000000000152500000000000000000000000000000000000000000000000000000000000001fea26469706673582212205f3b7abdbf6953ce2986987c4c032042ecaae06e21454367015c63944afd353464736f6c634300081e003300, original_len: 15340, jump_table: JumpTable { map: "000002000000000000000000000000000000000000000000000000000084104208218410420821841000000000000000000110010000000001000000000000040000001000000002000000408000000000000002020200200020400010000000000800000000000040002080800221000000020000400000000000000000040002000000000000002000000004000000000008418400404000080200210000000000000000000000000200000021040000840008004008080208000000000000000000100000840004202004004000000000000800000000000020000002000042000000010400008000000000000000020000000000000000000000010000040880001000000000100010000201100082200004010040000004101042000000000000000000000000000021004080000000020400040800000000000004000008804000000000080000008100000000000000001008000000000000000000000000008040000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000800840020000800810000000000000010000080000000004200004000020100000000000040200000000000000000000000000000000000000080400000000000000000000000000000000000000000000000000000000000000000000000000000008040000000000000000000000000000000008040000000000000000008040000000000000000000000000000000000000000040004040200000000000000201000000000000000000200014000080400000000000000000000000000000000000000000000008100000000000000001000000000008000000008800020000000020100000000000000201000000000000000000000000000000000000000000000000000000008040000000000000000000000000000000000000000000000000000000000000000000002010000000000000000000000000000000000000000000000000000000000000002020000004000000000000000000000000000000000000000000000000000000000000000000800000000040801100800000000000000000000000000000000000000000000000000000000400000020010008000000400080001000200000004000101000008000000802084a0020010040000001000040801402040200000000000000000000000000000000000000000000000000000000000000000200000008000000004000000400100000000088410000402020080802081000000000000000000000000000020100000000000000000000000000000000000000000000000000000000000000002001002000002020080000000002401000000040200000100000094000004000202100400010840204000000804020000000000000000000000000000000480000001000008000000200800008020000000210010000020104000000040100004010000080004000008200040008000000100020800010002084000800000000200000402000040000900800000201000810000080100120000100000400004020000000201010000000000000000000000000000000000000000000000020100000000000000000000000000000000004000000000040400002000000010220100040010020100000002400000001008200080008000011080000000010010000100004200810000000000000000008100000000000000001008000000000000800000000000040400800000000028000140000008024010000100010000020000104002001000000401100800800800900000400000000110080000000802022080040001000880400200100000801000000400010040800000082008000440401000820000002000810002020004000800001008080080000800014000000004010011000002000000041080000008800001020008000000040800102000080000014002000800000220100000000000000000000000000081000000000000000201000000000000000000000000000000000000000000000000000000000002010000000000000000000000000000000000000000000402000000000000201000000000000000000200000000000000000000000000000808040000004040100804022000008120001001000000040800840002400040000020000000010080200000100008000010041000002000040100800040000080000200000100004208000011000000408000800040000100400080000884000021010000000400420000100040a000208040000010040000802008000001808000008020402000000008000400000000000000800004000800002000000004900000080000022010000021004002000002000008804000000040400000000000000000000000000000140084024028000805805000080500a1002014008402805000100a0042014028000805805000100a004201402800080580100040000021008000004200000100840000020008010004001002000800200400100040080020008010004000002100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000" } })) }, transaction_id: 0, storage: {4: EvmStorageSlot { original_value: 0, present_value: 0, transaction_id: 0, is_cold: false }}, status: AccountStatus(Touched) }, 0x0000000000000000000000000000000000000000: Account { info: AccountInfo { balance: 0, nonce: 0, code_hash: 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470, code: Some(LegacyAnalyzed(LegacyAnalyzedBytecode { bytecode: 0x00, original_len: 0, jump_table: JumpTable { map: "" } })) }, transaction_id: 0, storage: {}, status: AccountStatus(Touched) }} }) - Result: is_bonded = false -✓ is_bonded() call succeeded with correct result - Calldata (obfuscated): 0xe224c59d00000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000001388 (reward: 5000, payment: 5000) -✓ fund() call succeeded (gas: 116077) - State changes: 4 - Contract funded state: true - Calldata (obfuscated): 0x994049e600000000000000000000000000000000000000000000000000000000000009c4 - Gas used: 95826 - Result: 0 bytes returned - State committed: 4 -✓ bond() call succeeded - Result after bonding: is_bonded = true -✓ bond() executed successfully on obfuscated contract - -✓ Obfuscated contract executes correctly -✓ Valid tokens route to correct functions -✓ Token extraction works with function arguments (bond with uint256) -✓ State changes are preserved through obfuscation -test e2e::escrow::test_obfuscated_function_calls ... ok - -test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 44 filtered out; finished in 0.31s - From b01fd07b8ec05612bf67c31f746e24d3fb9b6707 Mon Sep 17 00:00:00 2001 From: g4titanx Date: Fri, 23 Jan 2026 03:21:40 +0100 Subject: [PATCH 6/6] chore: add mba to cli --- crates/cli/src/commands/mod.rs | 2 +- crates/cli/src/commands/obfuscate.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/crates/cli/src/commands/mod.rs b/crates/cli/src/commands/mod.rs index 25869a8..9ee615d 100644 --- a/crates/cli/src/commands/mod.rs +++ b/crates/cli/src/commands/mod.rs @@ -13,7 +13,7 @@ pub mod tui; use thiserror::Error; -pub const DEFAULT_PASSES: &str = "arithmetic_chain, push_split"; +pub const DEFAULT_PASSES: &str = "arithmetic_chain, push_split, mba"; /// Errors that can occur during obfuscation. #[derive(Debug, Error)] diff --git a/crates/cli/src/commands/obfuscate.rs b/crates/cli/src/commands/obfuscate.rs index ad5be20..78d4812 100644 --- a/crates/cli/src/commands/obfuscate.rs +++ b/crates/cli/src/commands/obfuscate.rs @@ -168,6 +168,7 @@ pub(crate) fn build_passes(list: &str) -> Result>, Box { Ok(Box::new(azoth_transform::push_split::PushSplit::new()) as Box) } + "mba" => Ok(Box::new(azoth_transform::mba::Mba::new()) as Box), "storage_gates" => Ok( Box::new(azoth_transform::storage_gates::StorageGates::new()) as Box, ),