From 03c4dba65f4a6b10a0254c658bc83605f9d70c7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=B3nica=20Jin?= Date: Wed, 28 Jan 2026 12:56:06 +0100 Subject: [PATCH 1/5] fix gas cost values for nested calls --- .../src/evm/tracing/execution_tracing.rs | 25 +++- substrate/frame/revive/src/tests/sol.rs | 116 ++++++++++++++++++ 2 files changed, 135 insertions(+), 6 deletions(-) diff --git a/substrate/frame/revive/src/evm/tracing/execution_tracing.rs b/substrate/frame/revive/src/evm/tracing/execution_tracing.rs index 40b02f5f7c78d..35f1c365b1416 100644 --- a/substrate/frame/revive/src/evm/tracing/execution_tracing.rs +++ b/substrate/frame/revive/src/evm/tracing/execution_tracing.rs @@ -40,6 +40,11 @@ pub struct ExecutionTracer { /// The collected trace steps. steps: Vec, + /// Stack of pending step indices awaiting their exit_step call. + /// When entering an opcode/syscall, we push the step index here. + /// When exit_step is called, we pop to find the correct step to update. + pending_steps: Vec, + /// Current call depth. depth: u16, @@ -71,6 +76,7 @@ impl ExecutionTracer { Self { config, steps: Vec::new(), + pending_steps: Vec::new(), depth: 0, step_count: 0, total_gas_used: 0, @@ -153,7 +159,10 @@ impl Tracing for ExecutionTracer { }, }; + // Track this step's index so exit_step can find it even after nested steps are added + let step_index = self.steps.len(); self.steps.push(step); + self.pending_steps.push(step_index); self.step_count += 1; } @@ -187,17 +196,21 @@ impl Tracing for ExecutionTracer { }, }; + let step_index = self.steps.len(); self.steps.push(step); + self.pending_steps.push(step_index); self.step_count += 1; } fn exit_step(&mut self, trace_info: &dyn FrameTraceInfo, returned: Option) { - if let Some(step) = self.steps.last_mut() { - step.gas_cost = step.gas.saturating_sub(trace_info.gas_left()); - step.weight_cost = trace_info.weight_consumed().saturating_sub(step.weight_cost); - if !self.config.disable_syscall_details { - if let ExecutionStepKind::PVMSyscall { returned: ref mut ret, .. } = step.kind { - *ret = returned; + if let Some(step_index) = self.pending_steps.pop() { + if let Some(step) = self.steps.get_mut(step_index) { + step.gas_cost = step.gas.saturating_sub(trace_info.gas_left()); + step.weight_cost = trace_info.weight_consumed().saturating_sub(step.weight_cost); + if !self.config.disable_syscall_details { + if let ExecutionStepKind::PVMSyscall { returned: ref mut ret, .. } = step.kind { + *ret = returned; + } } } } diff --git a/substrate/frame/revive/src/tests/sol.rs b/substrate/frame/revive/src/tests/sol.rs index 3eeece5d4b203..120165494afa1 100644 --- a/substrate/frame/revive/src/tests/sol.rs +++ b/substrate/frame/revive/src/tests/sol.rs @@ -729,6 +729,122 @@ fn execution_tracing_works_for_evm() { }); } +/// Test that execution tracing correctly tracks gas costs for nested calls. +#[test] +fn execution_tracing_nested_calls_gas_evm() { + use crate::{ + evm::{ExecutionStepKind, ExecutionTrace, ExecutionTracer, ExecutionTracerConfig}, + tracing::trace, + }; + use pallet_revive_fixtures::{Callee, Caller}; + + /// Verifies gas tracking for a call opcode (CALL, DELEGATECALL, etc.): + /// 1. The opcode has non-zero gas_cost + /// 2. gas - gas_cost equals the gas of the first step after returning to parent depth + fn verify_call_opcode_gas(trace: &ExecutionTrace, opcode: u8, opcode_name: &str) { + let steps = &trace.struct_logs; + + // Find all instances of the call opcode at depth 1 + for (i, step) in steps.iter().enumerate() { + if let ExecutionStepKind::EVMOpcode { op, .. } = &step.kind { + if *op == opcode && step.depth == 1 { + // Verify non-zero gas_cost + assert!( + step.gas_cost > 0, + "{} should have non-zero gas_cost", + opcode_name + ); + + // Find the first step after returning from depth 2 to depth 1 + let first_step_after_return = steps[i + 1..].iter().find(|s| s.depth == 1); + + if let Some(return_step) = first_step_after_return { + let expected_gas = step.gas.saturating_sub(step.gas_cost); + assert_eq!( + expected_gas, return_step.gas, + "{}: gas - gas_cost should equal first step after return", + opcode_name + ); + } + return; + } + } + } + panic!("No {} opcode found at depth 1", opcode_name); + } + + /// Traces a call to the Caller contract and returns the execution trace. + fn trace_call( + config: &ExecutionTracerConfig, + caller_addr: sp_core::H160, + call_data: Vec, + ) -> ExecutionTrace + where + F: FnOnce(), + { + let mut tracer = ExecutionTracer::new(config.clone()); + let _ = trace(&mut tracer, || { + builder::bare_call(caller_addr).data(call_data).build_and_unwrap_result() + }); + tracer.collect_trace() + } + + let (caller_code, _) = compile_module_with_type("Caller", FixtureType::Solc).unwrap(); + let (callee_code, _) = compile_module_with_type("Callee", FixtureType::Solc).unwrap(); + + ExtBuilder::default().existential_deposit(200).build().execute_with(|| { + let _ = ::Currency::set_balance(&ALICE, 100_000_000_000); + + let Contract { addr: callee_addr, .. } = + builder::bare_instantiate(Code::Upload(callee_code)).build_and_unwrap_contract(); + let Contract { addr: caller_addr, .. } = + builder::bare_instantiate(Code::Upload(caller_code)).build_and_unwrap_contract(); + + let config = ExecutionTracerConfig { + enable_memory: false, + disable_stack: true, + disable_storage: true, + enable_return_data: false, + disable_syscall_details: true, + limit: None, + memory_word_limit: 0, + }; + + // Test CALL opcode + let call_trace = trace_call::( + &config, + caller_addr, + Caller::normalCall { + _callee: callee_addr.0.into(), + _value: 0, + _data: Callee::echoCall { _data: 42u64 }.abi_encode().into(), + _gas: u64::MAX, + } + .abi_encode(), + ); + + assert!( + call_trace.struct_logs.iter().any(|s| s.depth > 1), + "Should have nested call steps" + ); + verify_call_opcode_gas(&call_trace, revm::bytecode::opcode::CALL, "CALL"); + + // Test DELEGATECALL opcode + let delegate_trace = trace_call::( + &config, + caller_addr, + Caller::delegateCall { + _callee: callee_addr.0.into(), + _data: Callee::echoCall { _data: 42u64 }.abi_encode().into(), + _gas: u64::MAX, + } + .abi_encode(), + ); + + verify_call_opcode_gas(&delegate_trace, revm::bytecode::opcode::DELEGATECALL, "DELEGATECALL"); + }); +} + #[test] fn execution_tracing_works_for_pvm() { use crate::{ From 703ce6be0e3104ae33c9b746ad05937ce806d06a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=B3nica=20Jin?= Date: Wed, 28 Jan 2026 16:30:45 +0100 Subject: [PATCH 2/5] add test for pvm nested calls execution tracing --- substrate/frame/revive/src/tests/sol.rs | 124 ++++++++++++++++-------- 1 file changed, 82 insertions(+), 42 deletions(-) diff --git a/substrate/frame/revive/src/tests/sol.rs b/substrate/frame/revive/src/tests/sol.rs index 120165494afa1..1e44e63b4c04f 100644 --- a/substrate/frame/revive/src/tests/sol.rs +++ b/substrate/frame/revive/src/tests/sol.rs @@ -730,58 +730,83 @@ fn execution_tracing_works_for_evm() { } /// Test that execution tracing correctly tracks gas costs for nested calls. -#[test] -fn execution_tracing_nested_calls_gas_evm() { +/// +/// For EVM: gas - gas_cost == return_step.gas (exact, every opcode is traced) +/// For PVM: gas - gas_cost >= return_step.gas (inequality, PVM instructions between syscalls +/// consume additional gas that isn't individually traced) +#[test_case(FixtureType::Solc; "evm")] +#[test_case(FixtureType::Resolc; "pvm")] +fn execution_tracing_nested_calls_gas(fixture_type: FixtureType) { use crate::{ evm::{ExecutionStepKind, ExecutionTrace, ExecutionTracer, ExecutionTracerConfig}, tracing::trace, + vm::pvm::env::lookup_syscall_index, }; use pallet_revive_fixtures::{Callee, Caller}; - /// Verifies gas tracking for a call opcode (CALL, DELEGATECALL, etc.): - /// 1. The opcode has non-zero gas_cost - /// 2. gas - gas_cost equals the gas of the first step after returning to parent depth - fn verify_call_opcode_gas(trace: &ExecutionTrace, opcode: u8, opcode_name: &str) { + /// Identifier for a call operation, either an EVM opcode or a PVM syscall index. + #[derive(Clone, Copy)] + enum CallOp { + EVMOpcode(u8), + PVMSyscall(u8), + } + + /// Verifies gas tracking for a call operation (CALL/DELEGATECALL opcode or syscall): + /// 1. The operation has non-zero gas_cost + /// 2. For EVM: gas - gas_cost == return_step.gas + /// 3. For PVM: gas - gas_cost >= return_step.gas + fn verify_call_gas(trace: &ExecutionTrace, call_op: CallOp, op_name: &str) { let steps = &trace.struct_logs; - // Find all instances of the call opcode at depth 1 for (i, step) in steps.iter().enumerate() { - if let ExecutionStepKind::EVMOpcode { op, .. } = &step.kind { - if *op == opcode && step.depth == 1 { - // Verify non-zero gas_cost - assert!( - step.gas_cost > 0, - "{} should have non-zero gas_cost", - opcode_name - ); - - // Find the first step after returning from depth 2 to depth 1 - let first_step_after_return = steps[i + 1..].iter().find(|s| s.depth == 1); - - if let Some(return_step) = first_step_after_return { - let expected_gas = step.gas.saturating_sub(step.gas_cost); - assert_eq!( - expected_gas, return_step.gas, - "{}: gas - gas_cost should equal first step after return", - opcode_name - ); + let matches = match (&step.kind, call_op) { + (ExecutionStepKind::EVMOpcode { op, .. }, CallOp::EVMOpcode(expected)) => + *op == expected, + (ExecutionStepKind::PVMSyscall { op, .. }, CallOp::PVMSyscall(expected)) => + *op == expected, + _ => false, + }; + + if matches && step.depth == 1 { + assert!(step.gas_cost > 0, "{} should have non-zero gas_cost", op_name); + + let first_step_after_return = steps[i + 1..].iter().find(|s| s.depth == 1); + + if let Some(return_step) = first_step_after_return { + let expected_gas = step.gas.saturating_sub(step.gas_cost); + + match call_op { + CallOp::EVMOpcode(_) => { + // EVM: exact equality (every opcode is traced) + assert_eq!( + expected_gas, return_step.gas, + "{}: gas - gas_cost should equal return step gas", + op_name + ); + }, + CallOp::PVMSyscall(_) => { + // PVM: inequality (instructions between syscalls consume gas) + assert!( + return_step.gas <= expected_gas, + "{}: return gas ({}) should be <= gas - gas_cost ({})", + op_name, + return_step.gas, + expected_gas + ); + }, } - return; } + return; } } - panic!("No {} opcode found at depth 1", opcode_name); + panic!("No {} found at depth 1", op_name); } - /// Traces a call to the Caller contract and returns the execution trace. - fn trace_call( + fn trace_call( config: &ExecutionTracerConfig, caller_addr: sp_core::H160, call_data: Vec, - ) -> ExecutionTrace - where - F: FnOnce(), - { + ) -> ExecutionTrace { let mut tracer = ExecutionTracer::new(config.clone()); let _ = trace(&mut tracer, || { builder::bare_call(caller_addr).data(call_data).build_and_unwrap_result() @@ -789,8 +814,9 @@ fn execution_tracing_nested_calls_gas_evm() { tracer.collect_trace() } - let (caller_code, _) = compile_module_with_type("Caller", FixtureType::Solc).unwrap(); - let (callee_code, _) = compile_module_with_type("Callee", FixtureType::Solc).unwrap(); + let is_evm = fixture_type == FixtureType::Solc; + let (caller_code, _) = compile_module_with_type("Caller", fixture_type).unwrap(); + let (callee_code, _) = compile_module_with_type("Callee", fixture_type).unwrap(); ExtBuilder::default().existential_deposit(200).build().execute_with(|| { let _ = ::Currency::set_balance(&ALICE, 100_000_000_000); @@ -810,8 +836,8 @@ fn execution_tracing_nested_calls_gas_evm() { memory_word_limit: 0, }; - // Test CALL opcode - let call_trace = trace_call::( + // Test CALL / call_evm + let call_trace = trace_call( &config, caller_addr, Caller::normalCall { @@ -827,10 +853,16 @@ fn execution_tracing_nested_calls_gas_evm() { call_trace.struct_logs.iter().any(|s| s.depth > 1), "Should have nested call steps" ); - verify_call_opcode_gas(&call_trace, revm::bytecode::opcode::CALL, "CALL"); - // Test DELEGATECALL opcode - let delegate_trace = trace_call::( + let (call_op, call_name) = if is_evm { + (CallOp::EVMOpcode(revm::bytecode::opcode::CALL), "CALL") + } else { + (CallOp::PVMSyscall(lookup_syscall_index("call_evm").unwrap()), "call_evm") + }; + verify_call_gas(&call_trace, call_op, call_name); + + // Test DELEGATECALL / delegate_call_evm + let delegate_trace = trace_call( &config, caller_addr, Caller::delegateCall { @@ -841,7 +873,15 @@ fn execution_tracing_nested_calls_gas_evm() { .abi_encode(), ); - verify_call_opcode_gas(&delegate_trace, revm::bytecode::opcode::DELEGATECALL, "DELEGATECALL"); + let (delegate_op, delegate_name) = if is_evm { + (CallOp::EVMOpcode(revm::bytecode::opcode::DELEGATECALL), "DELEGATECALL") + } else { + ( + CallOp::PVMSyscall(lookup_syscall_index("delegate_call_evm").unwrap()), + "delegate_call_evm", + ) + }; + verify_call_gas(&delegate_trace, delegate_op, delegate_name); }); } From 751c4c3745dc166e093dd04a4ae4fa86f09c59a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=B3nica=20Jin?= Date: Wed, 28 Jan 2026 17:12:22 +0100 Subject: [PATCH 3/5] refactor tracing tests --- substrate/frame/revive/src/tests/sol.rs | 85 ++++++++++++------------- 1 file changed, 42 insertions(+), 43 deletions(-) diff --git a/substrate/frame/revive/src/tests/sol.rs b/substrate/frame/revive/src/tests/sol.rs index 1e44e63b4c04f..5ec38fd4da5cc 100644 --- a/substrate/frame/revive/src/tests/sol.rs +++ b/substrate/frame/revive/src/tests/sol.rs @@ -745,10 +745,10 @@ fn execution_tracing_nested_calls_gas(fixture_type: FixtureType) { use pallet_revive_fixtures::{Callee, Caller}; /// Identifier for a call operation, either an EVM opcode or a PVM syscall index. - #[derive(Clone, Copy)] + #[derive(Clone, Copy, Debug)] enum CallOp { - EVMOpcode(u8), - PVMSyscall(u8), + Evm(u8), + Pvm(u8), } /// Verifies gas tracking for a call operation (CALL/DELEGATECALL opcode or syscall): @@ -760,41 +760,40 @@ fn execution_tracing_nested_calls_gas(fixture_type: FixtureType) { for (i, step) in steps.iter().enumerate() { let matches = match (&step.kind, call_op) { - (ExecutionStepKind::EVMOpcode { op, .. }, CallOp::EVMOpcode(expected)) => - *op == expected, - (ExecutionStepKind::PVMSyscall { op, .. }, CallOp::PVMSyscall(expected)) => - *op == expected, + (ExecutionStepKind::EVMOpcode { op, .. }, CallOp::Evm(expected)) => *op == expected, + (ExecutionStepKind::PVMSyscall { op, .. }, CallOp::Pvm(expected)) => *op == expected, _ => false, }; if matches && step.depth == 1 { assert!(step.gas_cost > 0, "{} should have non-zero gas_cost", op_name); - let first_step_after_return = steps[i + 1..].iter().find(|s| s.depth == 1); - - if let Some(return_step) = first_step_after_return { - let expected_gas = step.gas.saturating_sub(step.gas_cost); - - match call_op { - CallOp::EVMOpcode(_) => { - // EVM: exact equality (every opcode is traced) - assert_eq!( - expected_gas, return_step.gas, - "{}: gas - gas_cost should equal return step gas", - op_name - ); - }, - CallOp::PVMSyscall(_) => { - // PVM: inequality (instructions between syscalls consume gas) - assert!( - return_step.gas <= expected_gas, - "{}: return gas ({}) should be <= gas - gas_cost ({})", - op_name, - return_step.gas, - expected_gas - ); - }, - } + let return_step = steps[i + 1..] + .iter() + .find(|s| s.depth == 1) + .expect("Should have a step after returning from nested call"); + + let expected_gas = step.gas.saturating_sub(step.gas_cost); + + match call_op { + CallOp::Evm(_) => { + // EVM: exact equality (every opcode is traced) + assert_eq!( + expected_gas, return_step.gas, + "{}: gas - gas_cost should equal return step gas", + op_name + ); + }, + CallOp::Pvm(_) => { + // PVM: inequality (instructions between syscalls consume gas) + assert!( + return_step.gas <= expected_gas, + "{}: return gas ({}) should be <= gas - gas_cost ({})", + op_name, + return_step.gas, + expected_gas + ); + }, } return; } @@ -814,7 +813,6 @@ fn execution_tracing_nested_calls_gas(fixture_type: FixtureType) { tracer.collect_trace() } - let is_evm = fixture_type == FixtureType::Solc; let (caller_code, _) = compile_module_with_type("Caller", fixture_type).unwrap(); let (callee_code, _) = compile_module_with_type("Callee", fixture_type).unwrap(); @@ -854,10 +852,11 @@ fn execution_tracing_nested_calls_gas(fixture_type: FixtureType) { "Should have nested call steps" ); - let (call_op, call_name) = if is_evm { - (CallOp::EVMOpcode(revm::bytecode::opcode::CALL), "CALL") - } else { - (CallOp::PVMSyscall(lookup_syscall_index("call_evm").unwrap()), "call_evm") + let (call_op, call_name) = match fixture_type { + FixtureType::Solc | FixtureType::SolcRuntime => + (CallOp::Evm(revm::bytecode::opcode::CALL), "CALL"), + FixtureType::Resolc | FixtureType::Rust => + (CallOp::Pvm(lookup_syscall_index("call_evm").unwrap()), "call_evm"), }; verify_call_gas(&call_trace, call_op, call_name); @@ -873,13 +872,13 @@ fn execution_tracing_nested_calls_gas(fixture_type: FixtureType) { .abi_encode(), ); - let (delegate_op, delegate_name) = if is_evm { - (CallOp::EVMOpcode(revm::bytecode::opcode::DELEGATECALL), "DELEGATECALL") - } else { - ( - CallOp::PVMSyscall(lookup_syscall_index("delegate_call_evm").unwrap()), + let (delegate_op, delegate_name) = match fixture_type { + FixtureType::Solc | FixtureType::SolcRuntime => + (CallOp::Evm(revm::bytecode::opcode::DELEGATECALL), "DELEGATECALL"), + FixtureType::Resolc | FixtureType::Rust => ( + CallOp::Pvm(lookup_syscall_index("delegate_call_evm").unwrap()), "delegate_call_evm", - ) + ), }; verify_call_gas(&delegate_trace, delegate_op, delegate_name); }); From bb2a7330962b255afd52204021d0faa64b1854d1 Mon Sep 17 00:00:00 2001 From: pgherveou Date: Thu, 29 Jan 2026 14:10:03 +0100 Subject: [PATCH 4/5] refactor tests --- .../revive/src/evm/api/debug_rpc_types.rs | 86 +- .../revive/src/tests/json_trace/call_evm.json | 26667 ++++++++++++++++ .../revive/src/tests/json_trace/call_pvm.json | 293 + .../tests/json_trace/delegatecall_evm.json | 24407 ++++++++++++++ .../tests/json_trace/delegatecall_pvm.json | 277 + .../src/tests/json_trace/fibonacci_evm.json | 83 + .../src/tests/json_trace/fibonacci_pvm.json | 83 + substrate/frame/revive/src/tests/sol.rs | 575 +- 8 files changed, 52079 insertions(+), 392 deletions(-) create mode 100644 substrate/frame/revive/src/tests/json_trace/call_evm.json create mode 100644 substrate/frame/revive/src/tests/json_trace/call_pvm.json create mode 100644 substrate/frame/revive/src/tests/json_trace/delegatecall_evm.json create mode 100644 substrate/frame/revive/src/tests/json_trace/delegatecall_pvm.json create mode 100644 substrate/frame/revive/src/tests/json_trace/fibonacci_evm.json create mode 100644 substrate/frame/revive/src/tests/json_trace/fibonacci_pvm.json diff --git a/substrate/frame/revive/src/evm/api/debug_rpc_types.rs b/substrate/frame/revive/src/evm/api/debug_rpc_types.rs index 0c157af11c156..d9b37c78de23b 100644 --- a/substrate/frame/revive/src/evm/api/debug_rpc_types.rs +++ b/substrate/frame/revive/src/evm/api/debug_rpc_types.rs @@ -110,8 +110,9 @@ impl<'de> Deserialize<'de> for TracerConfig { } match TracerConfigHelper::deserialize(deserializer)? { - TracerConfigHelper::WithType(cfg) => - Ok(TracerConfig { config: cfg.config, timeout: cfg.timeout }), + TracerConfigHelper::WithType(cfg) => { + Ok(TracerConfig { config: cfg.config, timeout: cfg.timeout }) + }, TracerConfigHelper::Inline(cfg) => Ok(TracerConfig { config: TracerType::ExecutionTracer(Some(cfg.execution_tracer_config)), timeout: cfg.timeout, @@ -482,7 +483,7 @@ where #[derive( Default, TypeInfo, Encode, Decode, Serialize, Deserialize, Clone, Debug, Eq, PartialEq, )] -#[serde(rename_all = "camelCase")] +#[serde(default, rename_all = "camelCase")] pub struct ExecutionTrace { /// Total gas used by the transaction. pub gas: u64, @@ -499,8 +500,10 @@ pub struct ExecutionTrace { } /// An execution step which can be either an EVM opcode or a PVM syscall. -#[derive(TypeInfo, Encode, Decode, Serialize, Deserialize, Clone, Debug, Eq, PartialEq)] -#[serde(rename_all = "camelCase")] +#[derive( + TypeInfo, Encode, Decode, Serialize, Deserialize, Clone, Debug, Eq, PartialEq, Default, +)] +#[serde(default, rename_all = "camelCase")] pub struct ExecutionStep { /// Remaining gas before executing this step. #[codec(compact)] @@ -513,10 +516,10 @@ pub struct ExecutionStep { /// Current call depth. pub depth: u16, /// Return data from last frame output. - #[serde(skip_serializing_if = "Bytes::is_empty")] + #[serde(default, skip_serializing_if = "Bytes::is_empty")] pub return_data: Bytes, /// Any error that occurred during execution. - #[serde(skip_serializing_if = "Option::is_none")] + #[serde(default, skip_serializing_if = "Option::is_none")] pub error: Option, /// The kind of execution step (EVM opcode or PVM syscall). #[serde(flatten)] @@ -536,16 +539,22 @@ pub enum ExecutionStepKind { #[serde(serialize_with = "serialize_opcode", deserialize_with = "deserialize_opcode")] op: u8, /// EVM stack contents. - #[serde(serialize_with = "serialize_stack_minimal")] + #[serde( + default, + serialize_with = "serialize_stack_minimal", + deserialize_with = "deserialize_stack_minimal" + )] stack: Vec, /// EVM memory contents. #[serde( + default, skip_serializing_if = "Vec::is_empty", serialize_with = "serialize_memory_no_prefix" )] memory: Vec, /// Contract storage changes. #[serde( + default, skip_serializing_if = "Option::is_none", serialize_with = "serialize_storage_no_prefix" )] @@ -554,19 +563,32 @@ pub enum ExecutionStepKind { /// A PVM syscall execution. PVMSyscall { /// The executed syscall. - #[serde(serialize_with = "serialize_syscall_op")] + #[serde( + serialize_with = "serialize_syscall_op", + deserialize_with = "deserialize_syscall_op" + )] op: u8, /// The syscall arguments (register values a0-a5). /// Omitted when `disable_syscall_details` is true in ExecutionTracerConfig. - #[serde(skip_serializing_if = "Vec::is_empty", with = "super::hex_serde::vec")] + #[serde(default, skip_serializing_if = "Vec::is_empty", with = "super::hex_serde::vec")] args: Vec, /// The syscall return value. /// Omitted when `disable_syscall_details` is true in ExecutionTracerConfig. - #[serde(skip_serializing_if = "Option::is_none", with = "super::hex_serde::option")] + #[serde( + default, + skip_serializing_if = "Option::is_none", + with = "super::hex_serde::option" + )] returned: Option, }, } +impl Default for ExecutionStepKind { + fn default() -> Self { + Self::EVMOpcode { pc: 0, op: 0, stack: Vec::new(), memory: Vec::new(), storage: None } + } +} + macro_rules! define_opcode_functions { ($($op:ident),* $(,)?) => { /// Get opcode name from byte value using opcode names @@ -761,7 +783,7 @@ where { use crate::vm::pvm::env::list_syscalls; let Some(syscall_name_bytes) = list_syscalls().get(*idx as usize) else { - return Err(serde::ser::Error::custom(alloc::format!("Unknown syscall: {idx}"))) + return Err(serde::ser::Error::custom(alloc::format!("Unknown syscall: {idx}"))); }; let name = core::str::from_utf8(syscall_name_bytes).unwrap_or_default(); serializer.serialize_str(name) @@ -777,6 +799,21 @@ where .ok_or_else(|| serde::de::Error::custom(alloc::format!("Unknown opcode: {}", s))) } +/// Deserialize syscall from string name to index +fn deserialize_syscall_op<'de, D>(deserializer: D) -> Result +where + D: serde::Deserializer<'de>, +{ + use crate::vm::pvm::env::list_syscalls; + let s = String::deserialize(deserializer)?; + let syscalls = list_syscalls(); + syscalls + .iter() + .position(|name| core::str::from_utf8(name).unwrap_or_default() == s) + .map(|i| i as u8) + .ok_or_else(|| serde::de::Error::custom(alloc::format!("Unknown syscall: {}", s))) +} + /// A smart contract execution call trace. #[derive( TypeInfo, Default, Encode, Decode, Serialize, Deserialize, Clone, Debug, Eq, PartialEq, @@ -859,6 +896,31 @@ where minimal_values.serialize(serializer) } +/// Deserialize stack values from minimal hex format +fn deserialize_stack_minimal<'de, D>(deserializer: D) -> Result, D::Error> +where + D: serde::Deserializer<'de>, +{ + let strings = Vec::::deserialize(deserializer)?; + strings + .into_iter() + .map(|s| { + // Parse as U256 to handle minimal hex like "0x0" or "0x4" + let s = s.trim_start_matches("0x"); + let value = sp_core::U256::from_str_radix(s, 16) + .map_err(|e| serde::de::Error::custom(alloc::format!("{:?}", e)))?; + // Convert to bytes, trimming leading zeros to match serialization + let bytes = value.to_big_endian(); + let trimmed = bytes + .iter() + .position(|&b| b != 0) + .map(|pos| bytes[pos..].to_vec()) + .unwrap_or_else(|| vec![0u8]); + Ok(Bytes::from(trimmed)) + }) + .collect() +} + /// Serialize memory values without "0x" prefix (like Geth) fn serialize_memory_no_prefix(memory: &Vec, serializer: S) -> Result where diff --git a/substrate/frame/revive/src/tests/json_trace/call_evm.json b/substrate/frame/revive/src/tests/json_trace/call_evm.json new file mode 100644 index 0000000000000..f950fea813ec9 --- /dev/null +++ b/substrate/frame/revive/src/tests/json_trace/call_evm.json @@ -0,0 +1,26667 @@ +{ + "gas": 142537967, + "weightConsumed": { + "ref_time": 0, + "proof_size": 0 + }, + "baseCallWeight": { + "ref_time": 0, + "proof_size": 0 + }, + "failed": false, + "returnValue": "0x000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002a", + "structLogs": [ + { + "gas": 250000982272, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 0, + "op": "PUSH1", + "stack": [] + }, + { + "gas": 250000977688, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2, + "op": "PUSH1", + "stack": [ + "0x80" + ] + }, + { + "gas": 250000973104, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 4, + "op": "MSTORE", + "stack": [ + "0x80", + "0x40" + ] + }, + { + "gas": 250000968520, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 5, + "op": "PUSH1", + "stack": [] + }, + { + "gas": 250000963936, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 7, + "op": "CALLDATASIZE", + "stack": [ + "0x4" + ] + }, + { + "gas": 250000960880, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 8, + "op": "LT", + "stack": [ + "0x4", + "0xe4" + ] + }, + { + "gas": 250000956296, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 9, + "op": "PUSH2", + "stack": [ + "0x0" + ] + }, + { + "gas": 250000951712, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 12, + "op": "JUMPI", + "stack": [ + "0x0", + "0x79" + ] + }, + { + "gas": 250000936432, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 13, + "op": "PUSH0", + "stack": [] + }, + { + "gas": 250000933376, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 14, + "op": "CALLDATALOAD", + "stack": [ + "0x0" + ] + }, + { + "gas": 250000928792, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 15, + "op": "PUSH1", + "stack": [ + "0xd1df6a00000000000000000000000030e5e1bcec39a34bddda04e59dacad91" + ] + }, + { + "gas": 250000924208, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 17, + "op": "SHR", + "stack": [ + "0xd1df6a00000000000000000000000030e5e1bcec39a34bddda04e59dacad91", + "0xe0" + ] + }, + { + "gas": 250000919624, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 18, + "op": "DUP1", + "stack": [ + "0xd1df6a" + ] + }, + { + "gas": 250000915040, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 19, + "op": "PUSH4", + "stack": [ + "0xd1df6a", + "0xd1df6a" + ] + }, + { + "gas": 250000910456, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 24, + "op": "GT", + "stack": [ + "0xd1df6a", + "0xd1df6a", + "0x73d4a13a" + ] + }, + { + "gas": 250000905872, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 25, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0x1" + ] + }, + { + "gas": 250000901288, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 28, + "op": "JUMPI", + "stack": [ + "0xd1df6a", + "0x1", + "0x4d" + ] + }, + { + "gas": 250000886008, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 77, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a" + ] + }, + { + "gas": 250000884480, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 78, + "op": "DUP1", + "stack": [ + "0xd1df6a" + ] + }, + { + "gas": 250000879896, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 79, + "op": "PUSH3", + "stack": [ + "0xd1df6a", + "0xd1df6a" + ] + }, + { + "gas": 250000875312, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 83, + "op": "EQ", + "stack": [ + "0xd1df6a", + "0xd1df6a", + "0xd1df6a" + ] + }, + { + "gas": 250000870728, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 84, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0x1" + ] + }, + { + "gas": 250000866144, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 87, + "op": "JUMPI", + "stack": [ + "0xd1df6a", + "0x1", + "0x7d" + ] + }, + { + "gas": 250000850864, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 125, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a" + ] + }, + { + "gas": 250000849336, + "gasCost": 31900, + "weightCost": { + "ref_time": 319000, + "proof_size": 0 + }, + "depth": 1, + "pc": 126, + "op": "CALLVALUE", + "stack": [ + "0xd1df6a" + ] + }, + { + "gas": 250000817436, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 127, + "op": "DUP1", + "stack": [ + "0xd1df6a", + "0x0" + ] + }, + { + "gas": 250000812852, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 128, + "op": "ISZERO", + "stack": [ + "0xd1df6a", + "0x0", + "0x0" + ] + }, + { + "gas": 250000808268, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 129, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0x0", + "0x1" + ] + }, + { + "gas": 250000803684, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 132, + "op": "JUMPI", + "stack": [ + "0xd1df6a", + "0x0", + "0x1", + "0x88" + ] + }, + { + "gas": 250000788404, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 136, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0x0" + ] + }, + { + "gas": 250000786876, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 137, + "op": "POP", + "stack": [ + "0xd1df6a", + "0x0" + ] + }, + { + "gas": 250000783820, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 138, + "op": "PUSH2", + "stack": [ + "0xd1df6a" + ] + }, + { + "gas": 250000779236, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 141, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3" + ] + }, + { + "gas": 250000774652, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 143, + "op": "DUP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x4" + ] + }, + { + "gas": 250000770068, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 144, + "op": "CALLDATASIZE", + "stack": [ + "0xd1df6a", + "0xa3", + "0x4", + "0x4" + ] + }, + { + "gas": 250000767012, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 145, + "op": "SUB", + "stack": [ + "0xd1df6a", + "0xa3", + "0x4", + "0x4", + "0xe4" + ] + }, + { + "gas": 250000762428, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 146, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x4", + "0xe0" + ] + }, + { + "gas": 250000757844, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 147, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x4", + "0xe0", + "0x4" + ] + }, + { + "gas": 250000753260, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 148, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x4", + "0xe4" + ] + }, + { + "gas": 250000748676, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 149, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0xe4", + "0x4" + ] + }, + { + "gas": 250000744092, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 152, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0xe4", + "0x4", + "0x9e" + ] + }, + { + "gas": 250000739508, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 153, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0x4", + "0xe4" + ] + }, + { + "gas": 250000734924, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 154, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4" + ] + }, + { + "gas": 250000730340, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 157, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x8c6" + ] + }, + { + "gas": 250000718116, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2246, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4" + ] + }, + { + "gas": 250000716588, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2247, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4" + ] + }, + { + "gas": 250000713532, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2248, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0" + ] + }, + { + "gas": 250000710476, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2249, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0" + ] + }, + { + "gas": 250000707420, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2250, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "gas": 250000704364, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2251, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "gas": 250000699780, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2253, + "op": "DUP6", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x80" + ] + }, + { + "gas": 250000695196, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2254, + "op": "DUP8", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x80", + "0x4" + ] + }, + { + "gas": 250000690612, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2255, + "op": "SUB", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x80", + "0x4", + "0xe4" + ] + }, + { + "gas": 250000686028, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2256, + "op": "SLT", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x80", + "0xe0" + ] + }, + { + "gas": 250000681444, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2257, + "op": "ISZERO", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "gas": 250000676860, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2258, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x1" + ] + }, + { + "gas": 250000672276, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 2261, + "op": "JUMPI", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x1", + "0x8de" + ] + }, + { + "gas": 250000656996, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2270, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "gas": 250000655468, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2271, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "gas": 250000652412, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2272, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "gas": 250000647828, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2275, + "op": "DUP8", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb" + ] + }, + { + "gas": 250000643244, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2276, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4" + ] + }, + { + "gas": 250000638660, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2277, + "op": "DUP9", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x0" + ] + }, + { + "gas": 250000634076, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2278, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x0", + "0x4" + ] + }, + { + "gas": 250000629492, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2279, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4" + ] + }, + { + "gas": 250000624908, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2282, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x739" + ] + }, + { + "gas": 250000612684, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1849, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4" + ] + }, + { + "gas": 250000611156, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1850, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4" + ] + }, + { + "gas": 250000608100, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1851, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x0" + ] + }, + { + "gas": 250000603516, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1852, + "op": "CALLDATALOAD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x0", + "0x4" + ] + }, + { + "gas": 250000598932, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1853, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000594348, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1854, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0" + ] + }, + { + "gas": 250000591292, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1855, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000586708, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1858, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747" + ] + }, + { + "gas": 250000582124, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1859, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000577540, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1862, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x723" + ] + }, + { + "gas": 250000565316, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1827, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000563788, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1828, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000559204, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1831, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c" + ] + }, + { + "gas": 250000554620, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1832, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000550036, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1835, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x712" + ] + }, + { + "gas": 250000537812, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1810, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000536284, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1811, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000533228, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1812, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0" + ] + }, + { + "gas": 250000528644, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1815, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c" + ] + }, + { + "gas": 250000524060, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1816, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000519476, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1819, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x6f3" + ] + }, + { + "gas": 250000507252, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1779, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000505724, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1780, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000502668, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1781, + "op": "PUSH20", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0" + ] + }, + { + "gas": 250000498084, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1802, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "gas": 250000493500, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1803, + "op": "AND", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000488916, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1804, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000484332, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1805, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0" + ] + }, + { + "gas": 250000481276, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1806, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000476692, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1807, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x71c" + ] + }, + { + "gas": 250000472108, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1808, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000469052, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1809, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x71c" + ] + }, + { + "gas": 250000456828, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1820, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000455300, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1821, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000450716, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1822, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0" + ] + }, + { + "gas": 250000447660, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1823, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000443076, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1824, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c" + ] + }, + { + "gas": 250000438492, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1825, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000435436, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1826, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c" + ] + }, + { + "gas": 250000423212, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1836, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000421684, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1837, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000417100, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1838, + "op": "EQ", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000412516, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1839, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x1" + ] + }, + { + "gas": 250000407932, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 1842, + "op": "JUMPI", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x1", + "0x736" + ] + }, + { + "gas": 250000392652, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1846, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000391124, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1847, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000388068, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1848, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747" + ] + }, + { + "gas": 250000375844, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1863, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000374316, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1864, + "op": "SWAP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x8eb", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000369732, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1865, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xe4", + "0x4", + "0x8eb" + ] + }, + { + "gas": 250000365148, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1866, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x8eb", + "0x4", + "0xe4" + ] + }, + { + "gas": 250000362092, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1867, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x8eb", + "0x4" + ] + }, + { + "gas": 250000359036, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1868, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x8eb" + ] + }, + { + "gas": 250000346812, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2283, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000345284, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2284, + "op": "SWAP5", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000340700, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2285, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "gas": 250000337644, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2286, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "gas": 250000334588, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2287, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0" + ] + }, + { + "gas": 250000330004, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2289, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20" + ] + }, + { + "gas": 250000325420, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2292, + "op": "DUP8", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc" + ] + }, + { + "gas": 250000320836, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2293, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4" + ] + }, + { + "gas": 250000316252, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2294, + "op": "DUP9", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x20" + ] + }, + { + "gas": 250000311668, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2295, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x20", + "0x4" + ] + }, + { + "gas": 250000307084, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2296, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24" + ] + }, + { + "gas": 250000302500, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2299, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x776" + ] + }, + { + "gas": 250000290276, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1910, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24" + ] + }, + { + "gas": 250000288748, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1911, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24" + ] + }, + { + "gas": 250000285692, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1912, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0" + ] + }, + { + "gas": 250000281108, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1913, + "op": "CALLDATALOAD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x24" + ] + }, + { + "gas": 250000276524, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1914, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x0" + ] + }, + { + "gas": 250000271940, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1915, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x0" + ] + }, + { + "gas": 250000268884, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1916, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0" + ] + }, + { + "gas": 250000264300, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1919, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784" + ] + }, + { + "gas": 250000259716, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1920, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0" + ] + }, + { + "gas": 250000255132, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1923, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0", + "0x760" + ] + }, + { + "gas": 250000242908, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1888, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0" + ] + }, + { + "gas": 250000241380, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1889, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0" + ] + }, + { + "gas": 250000236796, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1892, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0", + "0x769" + ] + }, + { + "gas": 250000232212, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1893, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0", + "0x769", + "0x0" + ] + }, + { + "gas": 250000227628, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1896, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0", + "0x769", + "0x0", + "0x74d" + ] + }, + { + "gas": 250000215404, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1869, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0", + "0x769", + "0x0" + ] + }, + { + "gas": 250000213876, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1870, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0", + "0x769", + "0x0" + ] + }, + { + "gas": 250000210820, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1871, + "op": "PUSH8", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0", + "0x769", + "0x0", + "0x0" + ] + }, + { + "gas": 250000206236, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1880, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0", + "0x769", + "0x0", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "gas": 250000201652, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1881, + "op": "AND", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0", + "0x769", + "0x0", + "0x0", + "0xffffffffffffffff", + "0x0" + ] + }, + { + "gas": 250000197068, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1882, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0", + "0x769", + "0x0", + "0x0", + "0x0" + ] + }, + { + "gas": 250000192484, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1883, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0", + "0x769", + "0x0", + "0x0", + "0x0" + ] + }, + { + "gas": 250000189428, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1884, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0", + "0x769", + "0x0", + "0x0" + ] + }, + { + "gas": 250000184844, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1885, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0", + "0x0", + "0x0", + "0x769" + ] + }, + { + "gas": 250000180260, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1886, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0", + "0x0", + "0x769", + "0x0" + ] + }, + { + "gas": 250000177204, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1887, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0", + "0x0", + "0x769" + ] + }, + { + "gas": 250000164980, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1897, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0", + "0x0" + ] + }, + { + "gas": 250000163452, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1898, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0", + "0x0" + ] + }, + { + "gas": 250000158868, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1899, + "op": "EQ", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0", + "0x0", + "0x0" + ] + }, + { + "gas": 250000154284, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1900, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0", + "0x1" + ] + }, + { + "gas": 250000149700, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 1903, + "op": "JUMPI", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0", + "0x1", + "0x773" + ] + }, + { + "gas": 250000134420, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1907, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0" + ] + }, + { + "gas": 250000132892, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1908, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784", + "0x0" + ] + }, + { + "gas": 250000129836, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1909, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0", + "0x784" + ] + }, + { + "gas": 250000117612, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1924, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0" + ] + }, + { + "gas": 250000116084, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1925, + "op": "SWAP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x8fc", + "0xe4", + "0x24", + "0x0" + ] + }, + { + "gas": 250000111500, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1926, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x0", + "0xe4", + "0x24", + "0x8fc" + ] + }, + { + "gas": 250000106916, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1927, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x0", + "0x8fc", + "0x24", + "0xe4" + ] + }, + { + "gas": 250000103860, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1928, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x0", + "0x8fc", + "0x24" + ] + }, + { + "gas": 250000100804, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1929, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x0", + "0x8fc" + ] + }, + { + "gas": 250000088580, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2300, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x0" + ] + }, + { + "gas": 250000087052, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2301, + "op": "SWAP4", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x0" + ] + }, + { + "gas": 250000082468, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2302, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20", + "0x0" + ] + }, + { + "gas": 250000079412, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2303, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x20" + ] + }, + { + "gas": 250000076356, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2304, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0" + ] + }, + { + "gas": 250000071772, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2306, + "op": "DUP6", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x40" + ] + }, + { + "gas": 250000067188, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2307, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x40", + "0x4" + ] + }, + { + "gas": 250000062604, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2308, + "op": "CALLDATALOAD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x44" + ] + }, + { + "gas": 250000058020, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2309, + "op": "PUSH8", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80" + ] + }, + { + "gas": 250000053436, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2318, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0xffffffffffffffff" + ] + }, + { + "gas": 250000048852, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2319, + "op": "GT", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x80" + ] + }, + { + "gas": 250000044268, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2320, + "op": "ISZERO", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x0" + ] + }, + { + "gas": 250000039684, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2321, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x1" + ] + }, + { + "gas": 250000035100, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 2324, + "op": "JUMPI", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x1", + "0x91d" + ] + }, + { + "gas": 250000019820, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2333, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80" + ] + }, + { + "gas": 250000018292, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2334, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80" + ] + }, + { + "gas": 250000013708, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2337, + "op": "DUP8", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929" + ] + }, + { + "gas": 250000009124, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2338, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4" + ] + }, + { + "gas": 250000004540, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2339, + "op": "DUP9", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x80" + ] + }, + { + "gas": 249999999956, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2340, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x80", + "0x4" + ] + }, + { + "gas": 249999995372, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2341, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84" + ] + }, + { + "gas": 249999990788, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2344, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x899" + ] + }, + { + "gas": 249999978564, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2201, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84" + ] + }, + { + "gas": 249999977036, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2202, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84" + ] + }, + { + "gas": 249999973980, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2203, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0" + ] + }, + { + "gas": 249999969396, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2204, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0xe4" + ] + }, + { + "gas": 249999964812, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2206, + "op": "DUP4", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0xe4", + "0x1f" + ] + }, + { + "gas": 249999960228, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2207, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0xe4", + "0x1f", + "0x84" + ] + }, + { + "gas": 249999955644, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2208, + "op": "SLT", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0xe4", + "0xa3" + ] + }, + { + "gas": 249999951060, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2209, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x1" + ] + }, + { + "gas": 249999946476, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 2212, + "op": "JUMPI", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x1", + "0x8ad" + ] + }, + { + "gas": 249999931196, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2221, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0" + ] + }, + { + "gas": 249999929668, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2222, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0" + ] + }, + { + "gas": 249999925084, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2223, + "op": "CALLDATALOAD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x84" + ] + }, + { + "gas": 249999920500, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2224, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24" + ] + }, + { + "gas": 249999915916, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2227, + "op": "DUP5", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd" + ] + }, + { + "gas": 249999911332, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2228, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4" + ] + }, + { + "gas": 249999906748, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2229, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24" + ] + }, + { + "gas": 249999902164, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2231, + "op": "DUP7", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0x20" + ] + }, + { + "gas": 249999897580, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2232, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0x20", + "0x84" + ] + }, + { + "gas": 249999892996, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2233, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4" + ] + }, + { + "gas": 249999888412, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2236, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x858" + ] + }, + { + "gas": 249999876188, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2136, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4" + ] + }, + { + "gas": 249999874660, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2137, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4" + ] + }, + { + "gas": 249999871604, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2138, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0" + ] + }, + { + "gas": 249999867020, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2141, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a" + ] + }, + { + "gas": 249999862436, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2144, + "op": "DUP5", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865" + ] + }, + { + "gas": 249999857852, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2145, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24" + ] + }, + { + "gas": 249999853268, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2148, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x81a" + ] + }, + { + "gas": 249999841044, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2074, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24" + ] + }, + { + "gas": 249999839516, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2075, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24" + ] + }, + { + "gas": 249999836460, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2076, + "op": "PUSH8", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0" + ] + }, + { + "gas": 249999831876, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2085, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999827292, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2086, + "op": "GT", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0xffffffffffffffff", + "0x24" + ] + }, + { + "gas": 249999822708, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2087, + "op": "ISZERO", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x0" + ] + }, + { + "gas": 249999818124, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2088, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x1" + ] + }, + { + "gas": 249999813540, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 2091, + "op": "JUMPI", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x1", + "0x834" + ] + }, + { + "gas": 249999798260, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2100, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0" + ] + }, + { + "gas": 249999796732, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2101, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0" + ] + }, + { + "gas": 249999792148, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2104, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d" + ] + }, + { + "gas": 249999787564, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2105, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24" + ] + }, + { + "gas": 249999782980, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2108, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24", + "0x792" + ] + }, + { + "gas": 249999770756, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1938, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24" + ] + }, + { + "gas": 249999769228, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1939, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24" + ] + }, + { + "gas": 249999766172, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1940, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24", + "0x0" + ] + }, + { + "gas": 249999761588, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1942, + "op": "NOT", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24", + "0x0", + "0x1f" + ] + }, + { + "gas": 249999757004, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1943, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "gas": 249999752420, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1945, + "op": "DUP4", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" + ] + }, + { + "gas": 249999747836, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1946, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", + "0x24" + ] + }, + { + "gas": 249999743252, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1947, + "op": "AND", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x43" + ] + }, + { + "gas": 249999738668, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1948, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24", + "0x0", + "0x40" + ] + }, + { + "gas": 249999734084, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1949, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24", + "0x40", + "0x0" + ] + }, + { + "gas": 249999731028, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1950, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24", + "0x40" + ] + }, + { + "gas": 249999726444, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1951, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x40", + "0x24", + "0x83d" + ] + }, + { + "gas": 249999721860, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1952, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x40", + "0x83d", + "0x24" + ] + }, + { + "gas": 249999718804, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1953, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x40", + "0x83d" + ] + }, + { + "gas": 249999706580, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2109, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x40" + ] + }, + { + "gas": 249999705052, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2110, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x40" + ] + }, + { + "gas": 249999700468, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2111, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x40", + "0x0" + ] + }, + { + "gas": 249999697412, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2112, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x40" + ] + }, + { + "gas": 249999692828, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2114, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x40", + "0x20" + ] + }, + { + "gas": 249999688244, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2115, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x40", + "0x20", + "0x40" + ] + }, + { + "gas": 249999683660, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2116, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x40", + "0x60" + ] + }, + { + "gas": 249999679076, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2117, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x60", + "0x40" + ] + }, + { + "gas": 249999676020, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2118, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x60" + ] + }, + { + "gas": 249999671436, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2119, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x24", + "0x865" + ] + }, + { + "gas": 249999666852, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2120, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x865", + "0x24" + ] + }, + { + "gas": 249999663796, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2121, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x865" + ] + }, + { + "gas": 249999651572, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2149, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60" + ] + }, + { + "gas": 249999650044, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2150, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60" + ] + }, + { + "gas": 249999645460, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2153, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x800" + ] + }, + { + "gas": 249999633236, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2048, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60" + ] + }, + { + "gas": 249999631708, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2049, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60" + ] + }, + { + "gas": 249999628652, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2050, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x0" + ] + }, + { + "gas": 249999624068, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2053, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x809" + ] + }, + { + "gas": 249999619484, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2056, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x809", + "0x6e2" + ] + }, + { + "gas": 249999607260, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1762, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x809" + ] + }, + { + "gas": 249999605732, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1763, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x809" + ] + }, + { + "gas": 249999602676, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1764, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x809", + "0x0" + ] + }, + { + "gas": 249999598092, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1766, + "op": "MLOAD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x809", + "0x0", + "0x40" + ] + }, + { + "gas": 249999593508, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1767, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x809", + "0x0", + "0x80" + ] + }, + { + "gas": 249999588924, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1768, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x809", + "0x80", + "0x0" + ] + }, + { + "gas": 249999585868, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1769, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x809", + "0x80" + ] + }, + { + "gas": 249999581284, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1770, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x80", + "0x809" + ] + }, + { + "gas": 249999569060, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2057, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x80" + ] + }, + { + "gas": 249999567532, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2058, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x80" + ] + }, + { + "gas": 249999562948, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2059, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x0" + ] + }, + { + "gas": 249999559892, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2060, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80" + ] + }, + { + "gas": 249999555308, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2063, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815" + ] + }, + { + "gas": 249999550724, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2064, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60" + ] + }, + { + "gas": 249999546140, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2065, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80" + ] + }, + { + "gas": 249999541556, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2068, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7cf" + ] + }, + { + "gas": 249999529332, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1999, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80" + ] + }, + { + "gas": 249999527804, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2000, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80" + ] + }, + { + "gas": 249999523220, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2003, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8" + ] + }, + { + "gas": 249999518636, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2004, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60" + ] + }, + { + "gas": 249999514052, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2007, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60", + "0x792" + ] + }, + { + "gas": 249999501828, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1938, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60" + ] + }, + { + "gas": 249999500300, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1939, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60" + ] + }, + { + "gas": 249999497244, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1940, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60", + "0x0" + ] + }, + { + "gas": 249999492660, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1942, + "op": "NOT", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60", + "0x0", + "0x1f" + ] + }, + { + "gas": 249999488076, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1943, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "gas": 249999483492, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1945, + "op": "DUP4", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" + ] + }, + { + "gas": 249999478908, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1946, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", + "0x60" + ] + }, + { + "gas": 249999474324, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1947, + "op": "AND", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x7f" + ] + }, + { + "gas": 249999469740, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1948, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60", + "0x0", + "0x60" + ] + }, + { + "gas": 249999465156, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1949, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60", + "0x60", + "0x0" + ] + }, + { + "gas": 249999462100, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1950, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60", + "0x60" + ] + }, + { + "gas": 249999457516, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1951, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x60", + "0x60", + "0x7d8" + ] + }, + { + "gas": 249999452932, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1952, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x60", + "0x7d8", + "0x60" + ] + }, + { + "gas": 249999449876, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1953, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x60", + "0x7d8" + ] + }, + { + "gas": 249999437652, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2008, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x60" + ] + }, + { + "gas": 249999436124, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2009, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x60" + ] + }, + { + "gas": 249999431540, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2010, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x60", + "0x80" + ] + }, + { + "gas": 249999426956, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2011, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0" + ] + }, + { + "gas": 249999422372, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2012, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0x80" + ] + }, + { + "gas": 249999417788, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2013, + "op": "LT", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0x80", + "0xe0" + ] + }, + { + "gas": 249999413204, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2014, + "op": "PUSH8", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0x0" + ] + }, + { + "gas": 249999408620, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2023, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999404036, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2024, + "op": "GT", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0x0", + "0xffffffffffffffff", + "0xe0" + ] + }, + { + "gas": 249999399452, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2025, + "op": "OR", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0x0", + "0x0" + ] + }, + { + "gas": 249999394868, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2026, + "op": "ISZERO", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0x0" + ] + }, + { + "gas": 249999390284, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2027, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0x1" + ] + }, + { + "gas": 249999385700, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 2030, + "op": "JUMPI", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0x1", + "0x7f7" + ] + }, + { + "gas": 249999370420, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2039, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0" + ] + }, + { + "gas": 249999368892, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2040, + "op": "DUP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0" + ] + }, + { + "gas": 249999364308, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2041, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0xe0" + ] + }, + { + "gas": 249999359724, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2043, + "op": "MSTORE", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0xe0", + "0x40" + ] + }, + { + "gas": 249999355140, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2044, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0" + ] + }, + { + "gas": 249999352084, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2045, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80" + ] + }, + { + "gas": 249999349028, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2046, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60" + ] + }, + { + "gas": 249999345972, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2047, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815" + ] + }, + { + "gas": 249999333748, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2069, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80" + ] + }, + { + "gas": 249999332220, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2070, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x86a", + "0x60", + "0x80" + ] + }, + { + "gas": 249999327636, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2071, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x80", + "0x60", + "0x86a" + ] + }, + { + "gas": 249999323052, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2072, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x80", + "0x86a", + "0x60" + ] + }, + { + "gas": 249999319996, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2073, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x80", + "0x86a" + ] + }, + { + "gas": 249999307772, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2154, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x80" + ] + }, + { + "gas": 249999306244, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2155, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x0", + "0x80" + ] + }, + { + "gas": 249999301660, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2156, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0x0" + ] + }, + { + "gas": 249999298604, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2157, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80" + ] + }, + { + "gas": 249999294020, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2158, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0x24" + ] + }, + { + "gas": 249999289436, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2159, + "op": "MSTORE", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0x24", + "0x80" + ] + }, + { + "gas": 249999284852, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2160, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80" + ] + }, + { + "gas": 249999280268, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2162, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0x20" + ] + }, + { + "gas": 249999275684, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2163, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0x20", + "0x80" + ] + }, + { + "gas": 249999271100, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2164, + "op": "DUP5", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0" + ] + }, + { + "gas": 249999266516, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2165, + "op": "DUP5", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0xe4" + ] + }, + { + "gas": 249999261932, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2166, + "op": "DUP5", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0xe4", + "0x24" + ] + }, + { + "gas": 249999257348, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2167, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0xe4", + "0x24", + "0xa4" + ] + }, + { + "gas": 249999252764, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2168, + "op": "GT", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0xe4", + "0xc8" + ] + }, + { + "gas": 249999248180, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2169, + "op": "ISZERO", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x0" + ] + }, + { + "gas": 249999243596, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2170, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x1" + ] + }, + { + "gas": 249999239012, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 2173, + "op": "JUMPI", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x1", + "0x886" + ] + }, + { + "gas": 249999223732, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2182, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0" + ] + }, + { + "gas": 249999222204, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2183, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0" + ] + }, + { + "gas": 249999217620, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2186, + "op": "DUP5", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x891" + ] + }, + { + "gas": 249999213036, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2187, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x891", + "0x24" + ] + }, + { + "gas": 249999208452, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2188, + "op": "DUP6", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0" + ] + }, + { + "gas": 249999203868, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2189, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0xa4" + ] + }, + { + "gas": 249999199284, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2192, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0xa4", + "0x84a" + ] + }, + { + "gas": 249999187060, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2122, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0xa4" + ] + }, + { + "gas": 249999185532, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2123, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0xa4" + ] + }, + { + "gas": 249999180948, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2124, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0xa4", + "0x24" + ] + }, + { + "gas": 249999176364, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2125, + "op": "DUP4", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0xa4", + "0x24", + "0xa4" + ] + }, + { + "gas": 249999171780, + "gasCost": 49631, + "weightCost": { + "ref_time": 496308, + "proof_size": 0 + }, + "depth": 1, + "pc": 2126, + "op": "CALLDATACOPY", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0xa4", + "0x24", + "0xa4", + "0xa0" + ] + }, + { + "gas": 249999122149, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2127, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0xa4" + ] + }, + { + "gas": 249999119093, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2128, + "op": "DUP4", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0xa4", + "0x0" + ] + }, + { + "gas": 249999114509, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2129, + "op": "DUP4", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0xa4", + "0x0", + "0x24" + ] + }, + { + "gas": 249999109925, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2130, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0xa4", + "0x0", + "0x24", + "0xa0" + ] + }, + { + "gas": 249999105341, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2131, + "op": "MSTORE", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0xa4", + "0x0", + "0xc4" + ] + }, + { + "gas": 249999100757, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2132, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0xa4" + ] + }, + { + "gas": 249999097701, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2133, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0" + ] + }, + { + "gas": 249999094645, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2134, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x891", + "0x24" + ] + }, + { + "gas": 249999091589, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2135, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0", + "0x891" + ] + }, + { + "gas": 249999079365, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2193, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0" + ] + }, + { + "gas": 249999077837, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2194, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80", + "0xa0" + ] + }, + { + "gas": 249999074781, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2195, + "op": "SWAP4", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x8bd", + "0xe4", + "0x24", + "0xa4", + "0x80" + ] + }, + { + "gas": 249999070197, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2196, + "op": "SWAP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x80", + "0xe4", + "0x24", + "0xa4", + "0x8bd" + ] + }, + { + "gas": 249999065613, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2197, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x80", + "0x8bd", + "0x24", + "0xa4", + "0xe4" + ] + }, + { + "gas": 249999062557, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2198, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x80", + "0x8bd", + "0x24", + "0xa4" + ] + }, + { + "gas": 249999059501, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2199, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x80", + "0x8bd", + "0x24" + ] + }, + { + "gas": 249999056445, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2200, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x80", + "0x8bd" + ] + }, + { + "gas": 249999044221, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2237, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x80" + ] + }, + { + "gas": 249999042693, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2238, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x0", + "0x24", + "0x80" + ] + }, + { + "gas": 249999038109, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2239, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x80", + "0x24", + "0x0" + ] + }, + { + "gas": 249999035053, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2240, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x80", + "0x24" + ] + }, + { + "gas": 249999031997, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2241, + "op": "SWAP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x929", + "0xe4", + "0x84", + "0x80" + ] + }, + { + "gas": 249999027413, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2242, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x80", + "0xe4", + "0x84", + "0x929" + ] + }, + { + "gas": 249999022829, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2243, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x80", + "0x929", + "0x84", + "0xe4" + ] + }, + { + "gas": 249999019773, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2244, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x80", + "0x929", + "0x84" + ] + }, + { + "gas": 249999016717, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2245, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x80", + "0x929" + ] + }, + { + "gas": 249999004493, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2345, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x80" + ] + }, + { + "gas": 249999002965, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2346, + "op": "SWAP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x80", + "0x80" + ] + }, + { + "gas": 249998998381, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2347, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x80", + "0x0" + ] + }, + { + "gas": 249998995325, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2348, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x80" + ] + }, + { + "gas": 249998992269, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2349, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0" + ] + }, + { + "gas": 249998987685, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2351, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60" + ] + }, + { + "gas": 249998983101, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2354, + "op": "DUP8", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a" + ] + }, + { + "gas": 249998978517, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2355, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4" + ] + }, + { + "gas": 249998973933, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2356, + "op": "DUP9", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x60" + ] + }, + { + "gas": 249998969349, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2357, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x60", + "0x4" + ] + }, + { + "gas": 249998964765, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2358, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64" + ] + }, + { + "gas": 249998960181, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2361, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0x776" + ] + }, + { + "gas": 249998947957, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1910, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64" + ] + }, + { + "gas": 249998946429, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1911, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64" + ] + }, + { + "gas": 249998943373, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1912, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0x0" + ] + }, + { + "gas": 249998938789, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1913, + "op": "CALLDATALOAD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0x0", + "0x64" + ] + }, + { + "gas": 249998934205, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1914, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998929621, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1915, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x0" + ] + }, + { + "gas": 249998926565, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1916, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998921981, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1919, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784" + ] + }, + { + "gas": 249998917397, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1920, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998912813, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1923, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x760" + ] + }, + { + "gas": 249998900589, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1888, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998899061, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1889, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998894477, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1892, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769" + ] + }, + { + "gas": 249998889893, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1893, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998885309, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1896, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff", + "0x74d" + ] + }, + { + "gas": 249998873085, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1869, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998871557, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1870, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998868501, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1871, + "op": "PUSH8", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff", + "0x0" + ] + }, + { + "gas": 249998863917, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1880, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998859333, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1881, + "op": "AND", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff", + "0x0", + "0xffffffffffffffff", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998854749, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1882, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998850165, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1883, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff", + "0xffffffffffffffff", + "0x0" + ] + }, + { + "gas": 249998847109, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1884, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998842525, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1885, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0xffffffffffffffff", + "0xffffffffffffffff", + "0x769" + ] + }, + { + "gas": 249998837941, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1886, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998834885, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1887, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0xffffffffffffffff", + "0x769" + ] + }, + { + "gas": 249998822661, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1897, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998821133, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1898, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998816549, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1899, + "op": "EQ", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0xffffffffffffffff", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998811965, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1900, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x1" + ] + }, + { + "gas": 249998807381, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 1903, + "op": "JUMPI", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x1", + "0x773" + ] + }, + { + "gas": 249998792101, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1907, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998790573, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1908, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998787517, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1909, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff", + "0x784" + ] + }, + { + "gas": 249998775293, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1924, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998773765, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1925, + "op": "SWAP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0x93a", + "0xe4", + "0x64", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998769181, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1926, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0xffffffffffffffff", + "0xe4", + "0x64", + "0x93a" + ] + }, + { + "gas": 249998764597, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1927, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0xffffffffffffffff", + "0x93a", + "0x64", + "0xe4" + ] + }, + { + "gas": 249998761541, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1928, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0xffffffffffffffff", + "0x93a", + "0x64" + ] + }, + { + "gas": 249998758485, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1929, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0xffffffffffffffff", + "0x93a" + ] + }, + { + "gas": 249998746261, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2362, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998744733, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2363, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0x0", + "0x60", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998740149, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2364, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x60", + "0x0" + ] + }, + { + "gas": 249998737093, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2365, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x60" + ] + }, + { + "gas": 249998734037, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2366, + "op": "SWAP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998729453, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2367, + "op": "SWAP6", + "stack": [ + "0xd1df6a", + "0xa3", + "0x9e", + "0xe4", + "0x4", + "0xffffffffffffffff", + "0x0", + "0x80", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 249998724869, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2368, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xe4", + "0x4", + "0xffffffffffffffff", + "0x0", + "0x80", + "0x9e" + ] + }, + { + "gas": 249998720285, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2369, + "op": "SWAP5", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xe4", + "0x4", + "0xffffffffffffffff", + "0x9e", + "0x80", + "0x0" + ] + }, + { + "gas": 249998715701, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2370, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x4", + "0xffffffffffffffff", + "0x9e", + "0x80", + "0xe4" + ] + }, + { + "gas": 249998712645, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2371, + "op": "SWAP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x4", + "0xffffffffffffffff", + "0x9e", + "0x80" + ] + }, + { + "gas": 249998708061, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2372, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x9e", + "0x4" + ] + }, + { + "gas": 249998705005, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2373, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x9e" + ] + }, + { + "gas": 249998692781, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 158, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998691253, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 159, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998686669, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 162, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x224" + ] + }, + { + "gas": 249998674445, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 548, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998672917, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 549, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998669861, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 550, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0" + ] + }, + { + "gas": 249998665277, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 552, + "op": "DUP6", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60" + ] + }, + { + "gas": 249998660693, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 553, + "op": "PUSH20", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 249998656109, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 574, + "op": "AND", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "gas": 249998651525, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 575, + "op": "DUP6", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 249998646941, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 576, + "op": "PUSH8", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0" + ] + }, + { + "gas": 249998642357, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 585, + "op": "AND", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998637773, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 586, + "op": "DUP5", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0" + ] + }, + { + "gas": 249998633189, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 587, + "op": "PUSH8", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998628605, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 596, + "op": "AND", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0xffffffffffffffff", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998624021, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 597, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998619437, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 598, + "op": "DUP7", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0" + ] + }, + { + "gas": 249998614853, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 599, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x80" + ] + }, + { + "gas": 249998610269, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 601, + "op": "MLOAD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x80", + "0x40" + ] + }, + { + "gas": 249998605685, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 602, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x80", + "0xe0" + ] + }, + { + "gas": 249998601101, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 605, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x80", + "0xe0", + "0x263" + ] + }, + { + "gas": 249998596517, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 606, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0xe0", + "0x80" + ] + }, + { + "gas": 249998591933, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 607, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0" + ] + }, + { + "gas": 249998587349, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 610, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0xc7d" + ] + }, + { + "gas": 249998575125, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 3197, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0" + ] + }, + { + "gas": 249998573597, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3198, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0" + ] + }, + { + "gas": 249998570541, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3199, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0" + ] + }, + { + "gas": 249998565957, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3202, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88" + ] + }, + { + "gas": 249998561373, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3203, + "op": "DUP5", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0" + ] + }, + { + "gas": 249998556789, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3204, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80" + ] + }, + { + "gas": 249998552205, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 3207, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0xc4d" + ] + }, + { + "gas": 249998539981, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 3149, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80" + ] + }, + { + "gas": 249998538453, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3150, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80" + ] + }, + { + "gas": 249998535397, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3151, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0" + ] + }, + { + "gas": 249998530813, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3154, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0xc57" + ] + }, + { + "gas": 249998526229, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3155, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0xc57", + "0x80" + ] + }, + { + "gas": 249998521645, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 3158, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0xc57", + "0x80", + "0x960" + ] + }, + { + "gas": 249998509421, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2400, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0xc57", + "0x80" + ] + }, + { + "gas": 249998507893, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2401, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0xc57", + "0x80" + ] + }, + { + "gas": 249998504837, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2402, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0xc57", + "0x80", + "0x0" + ] + }, + { + "gas": 249998500253, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2403, + "op": "MLOAD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0xc57", + "0x80", + "0x0", + "0x80" + ] + }, + { + "gas": 249998495669, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2404, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0xc57", + "0x80", + "0x0", + "0x24" + ] + }, + { + "gas": 249998491085, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2405, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0xc57", + "0x80", + "0x24", + "0x0" + ] + }, + { + "gas": 249998488029, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2406, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0xc57", + "0x80", + "0x24" + ] + }, + { + "gas": 249998483445, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2407, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0x80", + "0xc57" + ] + }, + { + "gas": 249998478861, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2408, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc57", + "0x80" + ] + }, + { + "gas": 249998475805, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2409, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc57" + ] + }, + { + "gas": 249998463581, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 3159, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24" + ] + }, + { + "gas": 249998462053, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3160, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24" + ] + }, + { + "gas": 249998457469, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3163, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc61" + ] + }, + { + "gas": 249998452885, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3164, + "op": "DUP6", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc61", + "0x24" + ] + }, + { + "gas": 249998448301, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3165, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc61", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998443717, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 3168, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc61", + "0x24", + "0xe0", + "0xc43" + ] + }, + { + "gas": 249998431493, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 3139, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc61", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998429965, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3140, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc61", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998426909, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3141, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc61", + "0x24", + "0xe0", + "0x0" + ] + }, + { + "gas": 249998422325, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3142, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc61", + "0x24", + "0xe0", + "0x0", + "0xe0" + ] + }, + { + "gas": 249998417741, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3143, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc61", + "0x24", + "0xe0", + "0xe0", + "0x0" + ] + }, + { + "gas": 249998414685, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3144, + "op": "SWAP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc61", + "0x24", + "0xe0", + "0xe0" + ] + }, + { + "gas": 249998410101, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3145, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xe0", + "0x24", + "0xe0", + "0xc61" + ] + }, + { + "gas": 249998405517, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3146, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xe0", + "0xc61", + "0xe0", + "0x24" + ] + }, + { + "gas": 249998402461, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3147, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xe0", + "0xc61", + "0xe0" + ] + }, + { + "gas": 249998399405, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 3148, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xe0", + "0xc61" + ] + }, + { + "gas": 249998387181, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 3169, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998385653, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3170, + "op": "SWAP4", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998381069, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3171, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998378013, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3172, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24" + ] + }, + { + "gas": 249998373429, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3175, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71" + ] + }, + { + "gas": 249998368845, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3176, + "op": "DUP6", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24" + ] + }, + { + "gas": 249998364261, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3177, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998359677, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3179, + "op": "DUP7", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0x20" + ] + }, + { + "gas": 249998355093, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3180, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0x20", + "0x80" + ] + }, + { + "gas": 249998350509, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3181, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0" + ] + }, + { + "gas": 249998345925, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 3184, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0", + "0x97a" + ] + }, + { + "gas": 249998333701, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2426, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0" + ] + }, + { + "gas": 249998332173, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2427, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0" + ] + }, + { + "gas": 249998327589, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2428, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0", + "0x24" + ] + }, + { + "gas": 249998323005, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2429, + "op": "DUP4", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0", + "0x24", + "0xa0" + ] + }, + { + "gas": 249998318421, + "gasCost": 13752, + "weightCost": { + "ref_time": 137520, + "proof_size": 0 + }, + "depth": 1, + "pc": 2430, + "op": "MCOPY", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0", + "0x24", + "0xa0", + "0xe0" + ] + }, + { + "gas": 249998304669, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2431, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0" + ] + }, + { + "gas": 249998301613, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2432, + "op": "DUP4", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0", + "0x0" + ] + }, + { + "gas": 249998297029, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2433, + "op": "DUP4", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0", + "0x0", + "0x24" + ] + }, + { + "gas": 249998292445, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2434, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0", + "0x0", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998287861, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2435, + "op": "MSTORE", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0", + "0x0", + "0x104" + ] + }, + { + "gas": 249998283277, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2436, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0" + ] + }, + { + "gas": 249998280221, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2437, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998277165, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2438, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24" + ] + }, + { + "gas": 249998274109, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2439, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71" + ] + }, + { + "gas": 249998261885, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 3185, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24" + ] + }, + { + "gas": 249998260357, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3186, + "op": "DUP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24" + ] + }, + { + "gas": 249998255773, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3187, + "op": "DUP5", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0x24" + ] + }, + { + "gas": 249998251189, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3188, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998246605, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3189, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0x104" + ] + }, + { + "gas": 249998242021, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3190, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x104", + "0x24", + "0x0" + ] + }, + { + "gas": 249998238965, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3191, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x104", + "0x24" + ] + }, + { + "gas": 249998235909, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3192, + "op": "SWAP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x104" + ] + }, + { + "gas": 249998231325, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3193, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0x104", + "0xe0", + "0x80", + "0xc88" + ] + }, + { + "gas": 249998226741, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3194, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0x104", + "0xc88", + "0x80", + "0xe0" + ] + }, + { + "gas": 249998223685, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3195, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0x104", + "0xc88", + "0x80" + ] + }, + { + "gas": 249998220629, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 3196, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0x104", + "0xc88" + ] + }, + { + "gas": 249998208405, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 3208, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0x104" + ] + }, + { + "gas": 249998206877, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3209, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0xe0", + "0x0", + "0x104" + ] + }, + { + "gas": 249998202293, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3210, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0x104", + "0x0", + "0xe0" + ] + }, + { + "gas": 249998199237, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3211, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0x104", + "0x0" + ] + }, + { + "gas": 249998194653, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3212, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0x104", + "0x0", + "0x104" + ] + }, + { + "gas": 249998190069, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3213, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0x104", + "0x104", + "0x0" + ] + }, + { + "gas": 249998187013, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3214, + "op": "SWAP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x263", + "0x80", + "0x104", + "0x104" + ] + }, + { + "gas": 249998182429, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3215, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x104", + "0x80", + "0x104", + "0x263" + ] + }, + { + "gas": 249998177845, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3216, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x104", + "0x263", + "0x104", + "0x80" + ] + }, + { + "gas": 249998174789, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3217, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x104", + "0x263", + "0x104" + ] + }, + { + "gas": 249998171733, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 3218, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x104", + "0x263" + ] + }, + { + "gas": 249998159509, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 611, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x104" + ] + }, + { + "gas": 249998157981, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 612, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x104" + ] + }, + { + "gas": 249998154925, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 613, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x104", + "0x0" + ] + }, + { + "gas": 249998150341, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 615, + "op": "MLOAD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x104", + "0x0", + "0x40" + ] + }, + { + "gas": 249998145757, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 616, + "op": "DUP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x104", + "0x0", + "0xe0" + ] + }, + { + "gas": 249998141173, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 617, + "op": "DUP4", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x104", + "0x0", + "0xe0", + "0xe0" + ] + }, + { + "gas": 249998136589, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 618, + "op": "SUB", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x104", + "0x0", + "0xe0", + "0xe0", + "0x104" + ] + }, + { + "gas": 249998132005, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 619, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x104", + "0x0", + "0xe0", + "0x24" + ] + }, + { + "gas": 249998127421, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 620, + "op": "DUP6", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x104", + "0x0", + "0xe0", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998122837, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 621, + "op": "DUP9", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x104", + "0x0", + "0xe0", + "0x24", + "0xe0", + "0x0" + ] + }, + { + "gas": 249998118253, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 622, + "op": "DUP9", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x104", + "0x0", + "0xe0", + "0x24", + "0xe0", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 249998113669, + "gasCost": 138575269, + "weightCost": { + "ref_time": 318781869, + "proof_size": 5594 + }, + "depth": 1, + "pc": 623, + "op": "CALL", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x104", + "0x0", + "0xe0", + "0x24", + "0xe0", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff" + ] + }, + { + "gas": 249860586424, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 0, + "op": "PUSH1", + "stack": [] + }, + { + "gas": 249860581840, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 2, + "op": "PUSH1", + "stack": [ + "0x80" + ] + }, + { + "gas": 249860577256, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 4, + "op": "MSTORE", + "stack": [ + "0x80", + "0x40" + ] + }, + { + "gas": 249860572672, + "gasCost": 31900, + "weightCost": { + "ref_time": 319000, + "proof_size": 0 + }, + "depth": 2, + "pc": 5, + "op": "CALLVALUE", + "stack": [] + }, + { + "gas": 249860540772, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 6, + "op": "DUP1", + "stack": [ + "0x0" + ] + }, + { + "gas": 249860536188, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 7, + "op": "ISZERO", + "stack": [ + "0x0", + "0x0" + ] + }, + { + "gas": 249860531604, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 8, + "op": "PUSH2", + "stack": [ + "0x0", + "0x1" + ] + }, + { + "gas": 249860527020, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 2, + "pc": 11, + "op": "JUMPI", + "stack": [ + "0x0", + "0x1", + "0xf" + ] + }, + { + "gas": 249860511740, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 15, + "op": "JUMPDEST", + "stack": [ + "0x0" + ] + }, + { + "gas": 249860510212, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 16, + "op": "POP", + "stack": [ + "0x0" + ] + }, + { + "gas": 249860507156, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 17, + "op": "PUSH1", + "stack": [] + }, + { + "gas": 249860502572, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 19, + "op": "CALLDATASIZE", + "stack": [ + "0x4" + ] + }, + { + "gas": 249860499516, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 20, + "op": "LT", + "stack": [ + "0x4", + "0x24" + ] + }, + { + "gas": 249860494932, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 21, + "op": "PUSH2", + "stack": [ + "0x0" + ] + }, + { + "gas": 249860490348, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 2, + "pc": 24, + "op": "JUMPI", + "stack": [ + "0x0", + "0x86" + ] + }, + { + "gas": 249860475068, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 25, + "op": "PUSH0", + "stack": [] + }, + { + "gas": 249860472012, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 26, + "op": "CALLDATALOAD", + "stack": [ + "0x0" + ] + }, + { + "gas": 249860467428, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 27, + "op": "PUSH1", + "stack": [ + "0x7036362200000000000000000000000000000000000000000000000000000000" + ] + }, + { + "gas": 249860462844, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 29, + "op": "SHR", + "stack": [ + "0x7036362200000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "gas": 249860458260, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 30, + "op": "DUP1", + "stack": [ + "0x70363622" + ] + }, + { + "gas": 249860453676, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 31, + "op": "PUSH4", + "stack": [ + "0x70363622", + "0x70363622" + ] + }, + { + "gas": 249860449092, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 36, + "op": "GT", + "stack": [ + "0x70363622", + "0x70363622", + "0xb351696d" + ] + }, + { + "gas": 249860444508, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 37, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0x1" + ] + }, + { + "gas": 249860439924, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 2, + "pc": 40, + "op": "JUMPI", + "stack": [ + "0x70363622", + "0x1", + "0x59" + ] + }, + { + "gas": 249860424644, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 89, + "op": "JUMPDEST", + "stack": [ + "0x70363622" + ] + }, + { + "gas": 249860423116, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 90, + "op": "DUP1", + "stack": [ + "0x70363622" + ] + }, + { + "gas": 249860418532, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 91, + "op": "PUSH4", + "stack": [ + "0x70363622", + "0x70363622" + ] + }, + { + "gas": 249860413948, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 96, + "op": "EQ", + "stack": [ + "0x70363622", + "0x70363622", + "0x7da68f5" + ] + }, + { + "gas": 249860409364, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 97, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0x0" + ] + }, + { + "gas": 249860404780, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 2, + "pc": 100, + "op": "JUMPI", + "stack": [ + "0x70363622", + "0x0", + "0x8a" + ] + }, + { + "gas": 249860389500, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 101, + "op": "DUP1", + "stack": [ + "0x70363622" + ] + }, + { + "gas": 249860384916, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 102, + "op": "PUSH4", + "stack": [ + "0x70363622", + "0x70363622" + ] + }, + { + "gas": 249860380332, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 107, + "op": "EQ", + "stack": [ + "0x70363622", + "0x70363622", + "0x1d9a3bdd" + ] + }, + { + "gas": 249860375748, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 108, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0x0" + ] + }, + { + "gas": 249860371164, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 2, + "pc": 111, + "op": "JUMPI", + "stack": [ + "0x70363622", + "0x0", + "0x94" + ] + }, + { + "gas": 249860355884, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 112, + "op": "DUP1", + "stack": [ + "0x70363622" + ] + }, + { + "gas": 249860351300, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 113, + "op": "PUSH4", + "stack": [ + "0x70363622", + "0x70363622" + ] + }, + { + "gas": 249860346716, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 118, + "op": "EQ", + "stack": [ + "0x70363622", + "0x70363622", + "0x70363622" + ] + }, + { + "gas": 249860342132, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 119, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0x1" + ] + }, + { + "gas": 249860337548, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 2, + "pc": 122, + "op": "JUMPI", + "stack": [ + "0x70363622", + "0x1", + "0xb0" + ] + }, + { + "gas": 249860322268, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 176, + "op": "JUMPDEST", + "stack": [ + "0x70363622" + ] + }, + { + "gas": 249860320740, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 177, + "op": "PUSH2", + "stack": [ + "0x70363622" + ] + }, + { + "gas": 249860316156, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 180, + "op": "PUSH1", + "stack": [ + "0x70363622", + "0xca" + ] + }, + { + "gas": 249860311572, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 182, + "op": "DUP1", + "stack": [ + "0x70363622", + "0xca", + "0x4" + ] + }, + { + "gas": 249860306988, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 183, + "op": "CALLDATASIZE", + "stack": [ + "0x70363622", + "0xca", + "0x4", + "0x4" + ] + }, + { + "gas": 249860303932, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 184, + "op": "SUB", + "stack": [ + "0x70363622", + "0xca", + "0x4", + "0x4", + "0x24" + ] + }, + { + "gas": 249860299348, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 185, + "op": "DUP2", + "stack": [ + "0x70363622", + "0xca", + "0x4", + "0x20" + ] + }, + { + "gas": 249860294764, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 186, + "op": "ADD", + "stack": [ + "0x70363622", + "0xca", + "0x4", + "0x20", + "0x4" + ] + }, + { + "gas": 249860290180, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 187, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0xca", + "0x4", + "0x24" + ] + }, + { + "gas": 249860285596, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 188, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0x24", + "0x4" + ] + }, + { + "gas": 249860281012, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 191, + "op": "SWAP2", + "stack": [ + "0x70363622", + "0xca", + "0x24", + "0x4", + "0xc5" + ] + }, + { + "gas": 249860276428, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 192, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x4", + "0x24" + ] + }, + { + "gas": 249860271844, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 193, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4" + ] + }, + { + "gas": 249860267260, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 196, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x236" + ] + }, + { + "gas": 249860255036, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 566, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4" + ] + }, + { + "gas": 249860253508, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 567, + "op": "PUSH0", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4" + ] + }, + { + "gas": 249860250452, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 568, + "op": "PUSH1", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0" + ] + }, + { + "gas": 249860245868, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 570, + "op": "DUP3", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "gas": 249860241284, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 571, + "op": "DUP5", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "gas": 249860236700, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 572, + "op": "SUB", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "gas": 249860232116, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 573, + "op": "SLT", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "gas": 249860227532, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 574, + "op": "ISZERO", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "gas": 249860222948, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 575, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "gas": 249860218364, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 2, + "pc": 578, + "op": "JUMPI", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x1", + "0x24b" + ] + }, + { + "gas": 249860203084, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 587, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0" + ] + }, + { + "gas": 249860201556, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 588, + "op": "PUSH0", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0" + ] + }, + { + "gas": 249860198500, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 589, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "gas": 249860193916, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 592, + "op": "DUP5", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258" + ] + }, + { + "gas": 249860189332, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 593, + "op": "DUP3", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24" + ] + }, + { + "gas": 249860184748, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 594, + "op": "DUP6", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x0" + ] + }, + { + "gas": 249860180164, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 595, + "op": "ADD", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x0", + "0x4" + ] + }, + { + "gas": 249860175580, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 596, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4" + ] + }, + { + "gas": 249860170996, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 599, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x222" + ] + }, + { + "gas": 249860158772, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 546, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4" + ] + }, + { + "gas": 249860157244, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 547, + "op": "PUSH0", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4" + ] + }, + { + "gas": 249860154188, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 548, + "op": "DUP2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x0" + ] + }, + { + "gas": 249860149604, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 549, + "op": "CALLDATALOAD", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "gas": 249860145020, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 550, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x0", + "0x2a" + ] + }, + { + "gas": 249860140436, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 551, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x0" + ] + }, + { + "gas": 249860137380, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 552, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a" + ] + }, + { + "gas": 249860132796, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 555, + "op": "DUP2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230" + ] + }, + { + "gas": 249860128212, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 556, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a" + ] + }, + { + "gas": 249860123628, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 559, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x20c" + ] + }, + { + "gas": 249860111404, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 524, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a" + ] + }, + { + "gas": 249860109876, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 525, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a" + ] + }, + { + "gas": 249860105292, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 528, + "op": "DUP2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215" + ] + }, + { + "gas": 249860100708, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 529, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215", + "0x2a" + ] + }, + { + "gas": 249860096124, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 532, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215", + "0x2a", + "0x1f9" + ] + }, + { + "gas": 249860083900, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 505, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215", + "0x2a" + ] + }, + { + "gas": 249860082372, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 506, + "op": "PUSH0", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215", + "0x2a" + ] + }, + { + "gas": 249860079316, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 507, + "op": "PUSH8", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215", + "0x2a", + "0x0" + ] + }, + { + "gas": 249860074732, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 516, + "op": "DUP3", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215", + "0x2a", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "gas": 249860070148, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 517, + "op": "AND", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215", + "0x2a", + "0x0", + "0xffffffffffffffff", + "0x2a" + ] + }, + { + "gas": 249860065564, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 518, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215", + "0x2a", + "0x0", + "0x2a" + ] + }, + { + "gas": 249860060980, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 519, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215", + "0x2a", + "0x2a", + "0x0" + ] + }, + { + "gas": 249860057924, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 520, + "op": "SWAP2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215", + "0x2a", + "0x2a" + ] + }, + { + "gas": 249860053340, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 521, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x2a", + "0x2a", + "0x215" + ] + }, + { + "gas": 249860048756, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 522, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x2a", + "0x215", + "0x2a" + ] + }, + { + "gas": 249860045700, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 523, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x2a", + "0x215" + ] + }, + { + "gas": 249860033476, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 533, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x2a" + ] + }, + { + "gas": 249860031948, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 534, + "op": "DUP2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x2a" + ] + }, + { + "gas": 249860027364, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 535, + "op": "EQ", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x2a", + "0x2a" + ] + }, + { + "gas": 249860022780, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 536, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x1" + ] + }, + { + "gas": 249860018196, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 2, + "pc": 539, + "op": "JUMPI", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x1", + "0x21f" + ] + }, + { + "gas": 249860002916, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 543, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a" + ] + }, + { + "gas": 249860001388, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 544, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a" + ] + }, + { + "gas": 249859998332, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 545, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230" + ] + }, + { + "gas": 249859986108, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 560, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a" + ] + }, + { + "gas": 249859984580, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 561, + "op": "SWAP3", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a" + ] + }, + { + "gas": 249859979996, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 562, + "op": "SWAP2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x2a", + "0x24", + "0x4", + "0x258" + ] + }, + { + "gas": 249859975412, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 563, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x2a", + "0x258", + "0x4", + "0x24" + ] + }, + { + "gas": 249859972356, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 564, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x2a", + "0x258", + "0x4" + ] + }, + { + "gas": 249859969300, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 565, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x2a", + "0x258" + ] + }, + { + "gas": 249859957076, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 600, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x2a" + ] + }, + { + "gas": 249859955548, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 601, + "op": "SWAP2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x2a" + ] + }, + { + "gas": 249859950964, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 602, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x2a", + "0x0", + "0x0" + ] + }, + { + "gas": 249859947908, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 603, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x2a", + "0x0" + ] + }, + { + "gas": 249859944852, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 604, + "op": "SWAP3", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x2a" + ] + }, + { + "gas": 249859940268, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 605, + "op": "SWAP2", + "stack": [ + "0x70363622", + "0xca", + "0x2a", + "0x24", + "0x4", + "0xc5" + ] + }, + { + "gas": 249859935684, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 606, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0x2a", + "0xc5", + "0x4", + "0x24" + ] + }, + { + "gas": 249859932628, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 607, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0x2a", + "0xc5", + "0x4" + ] + }, + { + "gas": 249859929572, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 608, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xca", + "0x2a", + "0xc5" + ] + }, + { + "gas": 249859917348, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 197, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0x2a" + ] + }, + { + "gas": 249859915820, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 198, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0x2a" + ] + }, + { + "gas": 249859911236, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 201, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xca", + "0x2a", + "0x17a" + ] + }, + { + "gas": 249859899012, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 378, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0x2a" + ] + }, + { + "gas": 249859897484, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 379, + "op": "PUSH0", + "stack": [ + "0x70363622", + "0xca", + "0x2a" + ] + }, + { + "gas": 249859894428, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 380, + "op": "DUP2", + "stack": [ + "0x70363622", + "0xca", + "0x2a", + "0x0" + ] + }, + { + "gas": 249859889844, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 381, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0xca", + "0x2a", + "0x0", + "0x2a" + ] + }, + { + "gas": 249859885260, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 382, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0x2a", + "0x2a", + "0x0" + ] + }, + { + "gas": 249859882204, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 383, + "op": "SWAP2", + "stack": [ + "0x70363622", + "0xca", + "0x2a", + "0x2a" + ] + }, + { + "gas": 249859877620, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 384, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0x2a", + "0x2a", + "0xca" + ] + }, + { + "gas": 249859873036, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 385, + "op": "POP", + "stack": [ + "0x70363622", + "0x2a", + "0xca", + "0x2a" + ] + }, + { + "gas": 249859869980, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 386, + "op": "JUMP", + "stack": [ + "0x70363622", + "0x2a", + "0xca" + ] + }, + { + "gas": 249859857756, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 202, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0x2a" + ] + }, + { + "gas": 249859856228, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 203, + "op": "PUSH1", + "stack": [ + "0x70363622", + "0x2a" + ] + }, + { + "gas": 249859851644, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 205, + "op": "MLOAD", + "stack": [ + "0x70363622", + "0x2a", + "0x40" + ] + }, + { + "gas": 249859847060, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 206, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0x2a", + "0x80" + ] + }, + { + "gas": 249859842476, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 209, + "op": "SWAP2", + "stack": [ + "0x70363622", + "0x2a", + "0x80", + "0xd7" + ] + }, + { + "gas": 249859837892, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 210, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0xd7", + "0x80", + "0x2a" + ] + }, + { + "gas": 249859833308, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 211, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80" + ] + }, + { + "gas": 249859828724, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 214, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0x270" + ] + }, + { + "gas": 249859816500, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 624, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80" + ] + }, + { + "gas": 249859814972, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 625, + "op": "PUSH0", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80" + ] + }, + { + "gas": 249859811916, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 626, + "op": "PUSH1", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0x0" + ] + }, + { + "gas": 249859807332, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 628, + "op": "DUP3", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0x0", + "0x20" + ] + }, + { + "gas": 249859802748, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 629, + "op": "ADD", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0x0", + "0x20", + "0x80" + ] + }, + { + "gas": 249859798164, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 630, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0x0", + "0xa0" + ] + }, + { + "gas": 249859793580, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 631, + "op": "POP", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x0" + ] + }, + { + "gas": 249859790524, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 632, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0" + ] + }, + { + "gas": 249859785940, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 635, + "op": "PUSH0", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283" + ] + }, + { + "gas": 249859782884, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 636, + "op": "DUP4", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x0" + ] + }, + { + "gas": 249859778300, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 637, + "op": "ADD", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x0", + "0x80" + ] + }, + { + "gas": 249859773716, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 638, + "op": "DUP5", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80" + ] + }, + { + "gas": 249859769132, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 639, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a" + ] + }, + { + "gas": 249859764548, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 642, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x261" + ] + }, + { + "gas": 249859752324, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 609, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a" + ] + }, + { + "gas": 249859750796, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 610, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a" + ] + }, + { + "gas": 249859746212, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 613, + "op": "DUP2", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a" + ] + }, + { + "gas": 249859741628, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 614, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a", + "0x2a" + ] + }, + { + "gas": 249859737044, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 617, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a", + "0x2a", + "0x1f9" + ] + }, + { + "gas": 249859724820, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 505, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a", + "0x2a" + ] + }, + { + "gas": 249859723292, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 506, + "op": "PUSH0", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a", + "0x2a" + ] + }, + { + "gas": 249859720236, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 507, + "op": "PUSH8", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a", + "0x2a", + "0x0" + ] + }, + { + "gas": 249859715652, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 516, + "op": "DUP3", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a", + "0x2a", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "gas": 249859711068, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 517, + "op": "AND", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a", + "0x2a", + "0x0", + "0xffffffffffffffff", + "0x2a" + ] + }, + { + "gas": 249859706484, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 518, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a", + "0x2a", + "0x0", + "0x2a" + ] + }, + { + "gas": 249859701900, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 519, + "op": "POP", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a", + "0x2a", + "0x2a", + "0x0" + ] + }, + { + "gas": 249859698844, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 520, + "op": "SWAP2", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a", + "0x2a", + "0x2a" + ] + }, + { + "gas": 249859694260, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 521, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x2a", + "0x2a", + "0x26a" + ] + }, + { + "gas": 249859689676, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 522, + "op": "POP", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x2a", + "0x26a", + "0x2a" + ] + }, + { + "gas": 249859686620, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 523, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x2a", + "0x26a" + ] + }, + { + "gas": 249859674396, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 618, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x2a" + ] + }, + { + "gas": 249859672868, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 619, + "op": "DUP3", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x2a" + ] + }, + { + "gas": 249859668284, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 620, + "op": "MSTORE", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x2a", + "0x80" + ] + }, + { + "gas": 249859663700, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 621, + "op": "POP", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a" + ] + }, + { + "gas": 249859660644, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 622, + "op": "POP", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80" + ] + }, + { + "gas": 249859657588, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 623, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283" + ] + }, + { + "gas": 249859645364, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 643, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0" + ] + }, + { + "gas": 249859643836, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 644, + "op": "SWAP3", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0" + ] + }, + { + "gas": 249859639252, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 645, + "op": "SWAP2", + "stack": [ + "0x70363622", + "0xa0", + "0x2a", + "0x80", + "0xd7" + ] + }, + { + "gas": 249859634668, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 646, + "op": "POP", + "stack": [ + "0x70363622", + "0xa0", + "0xd7", + "0x80", + "0x2a" + ] + }, + { + "gas": 249859631612, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 647, + "op": "POP", + "stack": [ + "0x70363622", + "0xa0", + "0xd7", + "0x80" + ] + }, + { + "gas": 249859628556, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 648, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xa0", + "0xd7" + ] + }, + { + "gas": 249859616332, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 215, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xa0" + ] + }, + { + "gas": 249859614804, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 216, + "op": "PUSH1", + "stack": [ + "0x70363622", + "0xa0" + ] + }, + { + "gas": 249859610220, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 218, + "op": "MLOAD", + "stack": [ + "0x70363622", + "0xa0", + "0x40" + ] + }, + { + "gas": 249859605636, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 219, + "op": "DUP1", + "stack": [ + "0x70363622", + "0xa0", + "0x80" + ] + }, + { + "gas": 249859601052, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 220, + "op": "SWAP2", + "stack": [ + "0x70363622", + "0xa0", + "0x80", + "0x80" + ] + }, + { + "gas": 249859596468, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 221, + "op": "SUB", + "stack": [ + "0x70363622", + "0x80", + "0x80", + "0xa0" + ] + }, + { + "gas": 249859591884, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 222, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0x80", + "0x20" + ] + }, + { + "gas": 249859587300, + "gasCost": 0, + "weightCost": { + "ref_time": 0, + "proof_size": 0 + }, + "depth": 2, + "pc": 223, + "op": "RETURN", + "stack": [ + "0x70363622", + "0x20", + "0x80" + ] + }, + { + "gas": 249859538400, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 624, + "op": "SWAP4", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x0", + "0x104", + "0x1" + ] + }, + { + "gas": 249859533816, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 625, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xffffffffffffffff", + "0x0", + "0x104", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 249859530760, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 626, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xffffffffffffffff", + "0x0", + "0x104" + ] + }, + { + "gas": 249859527704, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 627, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xffffffffffffffff", + "0x0" + ] + }, + { + "gas": 249859524648, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 628, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xffffffffffffffff" + ] + }, + { + "gas": 249859521592, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 629, + "op": "RETURNDATASIZE", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1" + ] + }, + { + "gas": 249859518536, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 630, + "op": "DUP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0x20" + ] + }, + { + "gas": 249859513952, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 631, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20" + ] + }, + { + "gas": 249859510896, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 632, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20", + "0x0" + ] + }, + { + "gas": 249859506312, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 633, + "op": "EQ", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20", + "0x0", + "0x20" + ] + }, + { + "gas": 249859501728, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 634, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20", + "0x0" + ] + }, + { + "gas": 249859497144, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 637, + "op": "JUMPI", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20", + "0x0", + "0x29e" + ] + }, + { + "gas": 249859481864, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 638, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20" + ] + }, + { + "gas": 249859477280, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 640, + "op": "MLOAD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20", + "0x40" + ] + }, + { + "gas": 249859472696, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 641, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20", + "0xe0" + ] + }, + { + "gas": 249859468112, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 642, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x20" + ] + }, + { + "gas": 249859465056, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 643, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20" + ] + }, + { + "gas": 249859460472, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 645, + "op": "NOT", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x1f" + ] + }, + { + "gas": 249859455888, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 646, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "gas": 249859451304, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 648, + "op": "RETURNDATASIZE", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x3f" + ] + }, + { + "gas": 249859448248, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 649, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x3f", + "0x20" + ] + }, + { + "gas": 249859443664, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 650, + "op": "AND", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x5f" + ] + }, + { + "gas": 249859439080, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 651, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x40" + ] + }, + { + "gas": 249859434496, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 652, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x40", + "0xe0" + ] + }, + { + "gas": 249859429912, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 653, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x120" + ] + }, + { + "gas": 249859425328, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 655, + "op": "MSTORE", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x120", + "0x40" + ] + }, + { + "gas": 249859420744, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 656, + "op": "RETURNDATASIZE", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20" + ] + }, + { + "gas": 249859417688, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 657, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x20" + ] + }, + { + "gas": 249859413104, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 658, + "op": "MSTORE", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x20", + "0xe0" + ] + }, + { + "gas": 249859408520, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 659, + "op": "RETURNDATASIZE", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20" + ] + }, + { + "gas": 249859405464, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 660, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x20" + ] + }, + { + "gas": 249859402408, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 661, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x20", + "0x0" + ] + }, + { + "gas": 249859397824, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 663, + "op": "DUP5", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x20", + "0x0", + "0x20" + ] + }, + { + "gas": 249859393240, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 664, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x20", + "0x0", + "0x20", + "0xe0" + ] + }, + { + "gas": 249859388656, + "gasCost": 49550, + "weightCost": { + "ref_time": 495496, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 665, + "op": "RETURNDATACOPY", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x20", + "0x0", + "0x100" + ] + }, + { + "gas": 249859339106, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 666, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20" + ] + }, + { + "gas": 249859334522, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 669, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x2a3" + ] + }, + { + "gas": 249859322298, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 675, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20" + ] + }, + { + "gas": 249859320770, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 676, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20" + ] + }, + { + "gas": 249859317714, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 677, + "op": "DUP1", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0" + ] + }, + { + "gas": 249859313130, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 678, + "op": "SWAP3", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0xe0" + ] + }, + { + "gas": 249859308546, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 679, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0xe0", + "0x1", + "0xe0", + "0x60" + ] + }, + { + "gas": 249859305490, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 680, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0xe0", + "0x1", + "0xe0" + ] + }, + { + "gas": 249859300906, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 681, + "op": "SWAP4", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x0", + "0xe0", + "0x1", + "0xe0", + "0x1" + ] + }, + { + "gas": 249859296322, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 682, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x1", + "0xe0", + "0x1", + "0xe0", + "0x0" + ] + }, + { + "gas": 249859293266, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 683, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x1", + "0xe0", + "0x1", + "0xe0" + ] + }, + { + "gas": 249859290210, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 684, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x1", + "0xe0", + "0x1" + ] + }, + { + "gas": 249859287154, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 685, + "op": "SWAP5", + "stack": [ + "0xd1df6a", + "0xa3", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x1", + "0xe0" + ] + }, + { + "gas": 249859282570, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 686, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xa3", + "0xe0", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x1", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 249859279514, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 687, + "op": "SWAP5", + "stack": [ + "0xd1df6a", + "0xa3", + "0xe0", + "0x0", + "0x80", + "0xffffffffffffffff", + "0x1" + ] + }, + { + "gas": 249859274930, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 688, + "op": "SWAP3", + "stack": [ + "0xd1df6a", + "0x1", + "0xe0", + "0x0", + "0x80", + "0xffffffffffffffff", + "0xa3" + ] + }, + { + "gas": 249859270346, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 689, + "op": "POP", + "stack": [ + "0xd1df6a", + "0x1", + "0xe0", + "0xa3", + "0x80", + "0xffffffffffffffff", + "0x0" + ] + }, + { + "gas": 249859267290, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 690, + "op": "POP", + "stack": [ + "0xd1df6a", + "0x1", + "0xe0", + "0xa3", + "0x80", + "0xffffffffffffffff" + ] + }, + { + "gas": 249859264234, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 691, + "op": "POP", + "stack": [ + "0xd1df6a", + "0x1", + "0xe0", + "0xa3", + "0x80" + ] + }, + { + "gas": 249859261178, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 692, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0x1", + "0xe0", + "0xa3" + ] + }, + { + "gas": 249859248954, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 163, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0x1", + "0xe0" + ] + }, + { + "gas": 249859247426, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 164, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0x1", + "0xe0" + ] + }, + { + "gas": 249859242842, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 166, + "op": "MLOAD", + "stack": [ + "0xd1df6a", + "0x1", + "0xe0", + "0x40" + ] + }, + { + "gas": 249859238258, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 167, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0x1", + "0xe0", + "0x120" + ] + }, + { + "gas": 249859233674, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 170, + "op": "SWAP3", + "stack": [ + "0xd1df6a", + "0x1", + "0xe0", + "0x120", + "0xb1" + ] + }, + { + "gas": 249859229090, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 171, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xb1", + "0xe0", + "0x120", + "0x1" + ] + }, + { + "gas": 249859224506, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 172, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0x120", + "0xe0" + ] + }, + { + "gas": 249859219922, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 173, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120" + ] + }, + { + "gas": 249859215338, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 176, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x9c0" + ] + }, + { + "gas": 249859203114, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2496, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120" + ] + }, + { + "gas": 249859201586, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2497, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120" + ] + }, + { + "gas": 249859198530, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2498, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x0" + ] + }, + { + "gas": 249859193946, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2500, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x0", + "0x40" + ] + }, + { + "gas": 249859189362, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2501, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x0", + "0x40", + "0x120" + ] + }, + { + "gas": 249859184778, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2502, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x0", + "0x160" + ] + }, + { + "gas": 249859180194, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2503, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x0" + ] + }, + { + "gas": 249859177138, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2504, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160" + ] + }, + { + "gas": 249859172554, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2507, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3" + ] + }, + { + "gas": 249859169498, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2508, + "op": "DUP4", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x0" + ] + }, + { + "gas": 249859164914, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2509, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x0", + "0x120" + ] + }, + { + "gas": 249859160330, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2510, + "op": "DUP6", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120" + ] + }, + { + "gas": 249859155746, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2511, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1" + ] + }, + { + "gas": 249859151162, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2514, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x951" + ] + }, + { + "gas": 249859138938, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2385, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1" + ] + }, + { + "gas": 249859137410, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2386, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1" + ] + }, + { + "gas": 249859132826, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2389, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a" + ] + }, + { + "gas": 249859128242, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2390, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a", + "0x1" + ] + }, + { + "gas": 249859123658, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2393, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a", + "0x1", + "0x946" + ] + }, + { + "gas": 249859111434, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2374, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a", + "0x1" + ] + }, + { + "gas": 249859109906, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2375, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a", + "0x1" + ] + }, + { + "gas": 249859106850, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2376, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a", + "0x1", + "0x0" + ] + }, + { + "gas": 249859102266, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2377, + "op": "ISZERO", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a", + "0x1", + "0x0", + "0x1" + ] + }, + { + "gas": 249859097682, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2378, + "op": "ISZERO", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a", + "0x1", + "0x0", + "0x0" + ] + }, + { + "gas": 249859093098, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2379, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a", + "0x1", + "0x0", + "0x1" + ] + }, + { + "gas": 249859088514, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2380, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a", + "0x1", + "0x1", + "0x0" + ] + }, + { + "gas": 249859085458, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2381, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a", + "0x1", + "0x1" + ] + }, + { + "gas": 249859080874, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2382, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x1", + "0x1", + "0x95a" + ] + }, + { + "gas": 249859076290, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2383, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x1", + "0x95a", + "0x1" + ] + }, + { + "gas": 249859073234, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2384, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x1", + "0x95a" + ] + }, + { + "gas": 249859061010, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2394, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x1" + ] + }, + { + "gas": 249859059482, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2395, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x1" + ] + }, + { + "gas": 249859054898, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2396, + "op": "MSTORE", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x1", + "0x120" + ] + }, + { + "gas": 249859050314, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2397, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1" + ] + }, + { + "gas": 249859047258, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2398, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120" + ] + }, + { + "gas": 249859044202, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2399, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3" + ] + }, + { + "gas": 249859031978, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2515, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160" + ] + }, + { + "gas": 249859030450, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2516, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160" + ] + }, + { + "gas": 249859025866, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2517, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x120" + ] + }, + { + "gas": 249859021282, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2518, + "op": "SUB", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x120", + "0x160" + ] + }, + { + "gas": 249859016698, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2519, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x40" + ] + }, + { + "gas": 249859012114, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2521, + "op": "DUP4", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x40", + "0x20" + ] + }, + { + "gas": 249859007530, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2522, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x40", + "0x20", + "0x120" + ] + }, + { + "gas": 249859002946, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2523, + "op": "MSTORE", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x40", + "0x140" + ] + }, + { + "gas": 249858998362, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2524, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160" + ] + }, + { + "gas": 249858993778, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2527, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5" + ] + }, + { + "gas": 249858989194, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2528, + "op": "DUP5", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160" + ] + }, + { + "gas": 249858984610, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2529, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0" + ] + }, + { + "gas": 249858980026, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2532, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x988" + ] + }, + { + "gas": 249858967802, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2440, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0" + ] + }, + { + "gas": 249858966274, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2441, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0" + ] + }, + { + "gas": 249858963218, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2442, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0" + ] + }, + { + "gas": 249858958634, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2445, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x992" + ] + }, + { + "gas": 249858954050, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2446, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x992", + "0xe0" + ] + }, + { + "gas": 249858949466, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2449, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x992", + "0xe0", + "0x960" + ] + }, + { + "gas": 249858937242, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2400, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x992", + "0xe0" + ] + }, + { + "gas": 249858935714, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2401, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x992", + "0xe0" + ] + }, + { + "gas": 249858932658, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2402, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x992", + "0xe0", + "0x0" + ] + }, + { + "gas": 249858928074, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2403, + "op": "MLOAD", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x992", + "0xe0", + "0x0", + "0xe0" + ] + }, + { + "gas": 249858923490, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2404, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x992", + "0xe0", + "0x0", + "0x20" + ] + }, + { + "gas": 249858918906, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2405, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x992", + "0xe0", + "0x20", + "0x0" + ] + }, + { + "gas": 249858915850, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2406, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x992", + "0xe0", + "0x20" + ] + }, + { + "gas": 249858911266, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2407, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0xe0", + "0x992" + ] + }, + { + "gas": 249858906682, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2408, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x992", + "0xe0" + ] + }, + { + "gas": 249858903626, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2409, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x992" + ] + }, + { + "gas": 249858891402, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2450, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20" + ] + }, + { + "gas": 249858889874, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2451, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20" + ] + }, + { + "gas": 249858885290, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2454, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c" + ] + }, + { + "gas": 249858880706, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2455, + "op": "DUP6", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20" + ] + }, + { + "gas": 249858876122, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2456, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160" + ] + }, + { + "gas": 249858871538, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2459, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160", + "0x96a" + ] + }, + { + "gas": 249858859314, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2410, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160" + ] + }, + { + "gas": 249858857786, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2411, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160" + ] + }, + { + "gas": 249858854730, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2412, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160", + "0x0" + ] + }, + { + "gas": 249858850146, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2413, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160", + "0x0", + "0x20" + ] + }, + { + "gas": 249858845562, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2414, + "op": "MSTORE", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160", + "0x0", + "0x20", + "0x160" + ] + }, + { + "gas": 249858840978, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2415, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160", + "0x0" + ] + }, + { + "gas": 249858836394, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2417, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160", + "0x0", + "0x20" + ] + }, + { + "gas": 249858831810, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2418, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160", + "0x0", + "0x20", + "0x160" + ] + }, + { + "gas": 249858827226, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2419, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160", + "0x0", + "0x180" + ] + }, + { + "gas": 249858822642, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2420, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160", + "0x180", + "0x0" + ] + }, + { + "gas": 249858819586, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2421, + "op": "SWAP3", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160", + "0x180" + ] + }, + { + "gas": 249858815002, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2422, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x180", + "0x20", + "0x160", + "0x99c" + ] + }, + { + "gas": 249858810418, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2423, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x180", + "0x99c", + "0x160", + "0x20" + ] + }, + { + "gas": 249858807362, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2424, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x180", + "0x99c", + "0x160" + ] + }, + { + "gas": 249858804306, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2425, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x180", + "0x99c" + ] + }, + { + "gas": 249858792082, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2460, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x180" + ] + }, + { + "gas": 249858790554, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2461, + "op": "SWAP4", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x180" + ] + }, + { + "gas": 249858785970, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2462, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x160" + ] + }, + { + "gas": 249858782914, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2463, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20" + ] + }, + { + "gas": 249858778330, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2466, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac" + ] + }, + { + "gas": 249858773746, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2467, + "op": "DUP6", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20" + ] + }, + { + "gas": 249858769162, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2468, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180" + ] + }, + { + "gas": 249858764578, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2470, + "op": "DUP7", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x20" + ] + }, + { + "gas": 249858759994, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2471, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x20", + "0xe0" + ] + }, + { + "gas": 249858755410, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2472, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100" + ] + }, + { + "gas": 249858750826, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2475, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100", + "0x97a" + ] + }, + { + "gas": 249858738602, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2426, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100" + ] + }, + { + "gas": 249858737074, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2427, + "op": "DUP3", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100" + ] + }, + { + "gas": 249858732490, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2428, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100", + "0x20" + ] + }, + { + "gas": 249858727906, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2429, + "op": "DUP4", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100", + "0x20", + "0x100" + ] + }, + { + "gas": 249858723322, + "gasCost": 9168, + "weightCost": { + "ref_time": 91680, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2430, + "op": "MCOPY", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100", + "0x20", + "0x100", + "0x180" + ] + }, + { + "gas": 249858714154, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2431, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100" + ] + }, + { + "gas": 249858711098, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2432, + "op": "DUP4", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100", + "0x0" + ] + }, + { + "gas": 249858706514, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2433, + "op": "DUP4", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100", + "0x0", + "0x20" + ] + }, + { + "gas": 249858701930, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2434, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100", + "0x0", + "0x20", + "0x180" + ] + }, + { + "gas": 249858697346, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2435, + "op": "MSTORE", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100", + "0x0", + "0x1a0" + ] + }, + { + "gas": 249858692762, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2436, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100" + ] + }, + { + "gas": 249858689706, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2437, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180" + ] + }, + { + "gas": 249858686650, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2438, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20" + ] + }, + { + "gas": 249858683594, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2439, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac" + ] + }, + { + "gas": 249858671370, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2476, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20" + ] + }, + { + "gas": 249858669842, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2477, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20" + ] + }, + { + "gas": 249858665258, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2480, + "op": "DUP2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5" + ] + }, + { + "gas": 249858660674, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2481, + "op": "PUSH2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20" + ] + }, + { + "gas": 249858656090, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2484, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20", + "0x792" + ] + }, + { + "gas": 249858643866, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1938, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20" + ] + }, + { + "gas": 249858642338, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1939, + "op": "PUSH0", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20" + ] + }, + { + "gas": 249858639282, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1940, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20", + "0x0" + ] + }, + { + "gas": 249858634698, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1942, + "op": "NOT", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20", + "0x0", + "0x1f" + ] + }, + { + "gas": 249858630114, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1943, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "gas": 249858625530, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1945, + "op": "DUP4", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" + ] + }, + { + "gas": 249858620946, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1946, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", + "0x20" + ] + }, + { + "gas": 249858616362, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1947, + "op": "AND", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x3f" + ] + }, + { + "gas": 249858611778, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1948, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20", + "0x0", + "0x20" + ] + }, + { + "gas": 249858607194, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1949, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20", + "0x20", + "0x0" + ] + }, + { + "gas": 249858604138, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1950, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20", + "0x20" + ] + }, + { + "gas": 249858599554, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1951, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x20", + "0x20", + "0x9b5" + ] + }, + { + "gas": 249858594970, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1952, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x20", + "0x9b5", + "0x20" + ] + }, + { + "gas": 249858591914, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1953, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x20", + "0x9b5" + ] + }, + { + "gas": 249858579690, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2485, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x20" + ] + }, + { + "gas": 249858578162, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2486, + "op": "DUP5", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x20" + ] + }, + { + "gas": 249858573578, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2487, + "op": "ADD", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x20", + "0x180" + ] + }, + { + "gas": 249858568994, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2488, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x1a0" + ] + }, + { + "gas": 249858564410, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2489, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x1a0", + "0x20", + "0x0" + ] + }, + { + "gas": 249858561354, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2490, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x1a0", + "0x20" + ] + }, + { + "gas": 249858558298, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2491, + "op": "SWAP3", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x1a0" + ] + }, + { + "gas": 249858553714, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2492, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x1a0", + "0x180", + "0xe0", + "0x9e5" + ] + }, + { + "gas": 249858549130, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2493, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x1a0", + "0x9e5", + "0xe0", + "0x180" + ] + }, + { + "gas": 249858546074, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2494, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x1a0", + "0x9e5", + "0xe0" + ] + }, + { + "gas": 249858543018, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2495, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x1a0", + "0x9e5" + ] + }, + { + "gas": 249858530794, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2533, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x1a0" + ] + }, + { + "gas": 249858529266, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2534, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x1a0" + ] + }, + { + "gas": 249858524682, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2535, + "op": "POP", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x1a0", + "0x160" + ] + }, + { + "gas": 249858521626, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2536, + "op": "SWAP4", + "stack": [ + "0xd1df6a", + "0xb1", + "0x1", + "0xe0", + "0x120", + "0x1a0" + ] + }, + { + "gas": 249858517042, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2537, + "op": "SWAP3", + "stack": [ + "0xd1df6a", + "0x1a0", + "0x1", + "0xe0", + "0x120", + "0xb1" + ] + }, + { + "gas": 249858512458, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2538, + "op": "POP", + "stack": [ + "0xd1df6a", + "0x1a0", + "0xb1", + "0xe0", + "0x120", + "0x1" + ] + }, + { + "gas": 249858509402, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2539, + "op": "POP", + "stack": [ + "0xd1df6a", + "0x1a0", + "0xb1", + "0xe0", + "0x120" + ] + }, + { + "gas": 249858506346, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2540, + "op": "POP", + "stack": [ + "0xd1df6a", + "0x1a0", + "0xb1", + "0xe0" + ] + }, + { + "gas": 249858503290, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2541, + "op": "JUMP", + "stack": [ + "0xd1df6a", + "0x1a0", + "0xb1" + ] + }, + { + "gas": 249858491066, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 177, + "op": "JUMPDEST", + "stack": [ + "0xd1df6a", + "0x1a0" + ] + }, + { + "gas": 249858489538, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 178, + "op": "PUSH1", + "stack": [ + "0xd1df6a", + "0x1a0" + ] + }, + { + "gas": 249858484954, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 180, + "op": "MLOAD", + "stack": [ + "0xd1df6a", + "0x1a0", + "0x40" + ] + }, + { + "gas": 249858480370, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 181, + "op": "DUP1", + "stack": [ + "0xd1df6a", + "0x1a0", + "0x120" + ] + }, + { + "gas": 249858475786, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 182, + "op": "SWAP2", + "stack": [ + "0xd1df6a", + "0x1a0", + "0x120", + "0x120" + ] + }, + { + "gas": 249858471202, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 183, + "op": "SUB", + "stack": [ + "0xd1df6a", + "0x120", + "0x120", + "0x1a0" + ] + }, + { + "gas": 249858466618, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 184, + "op": "SWAP1", + "stack": [ + "0xd1df6a", + "0x120", + "0x80" + ] + }, + { + "gas": 249858462034, + "gasCost": 0, + "weightCost": { + "ref_time": 0, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 185, + "op": "RETURN", + "stack": [ + "0xd1df6a", + "0x80", + "0x120" + ] + } + ] +} + diff --git a/substrate/frame/revive/src/tests/json_trace/call_pvm.json b/substrate/frame/revive/src/tests/json_trace/call_pvm.json new file mode 100644 index 0000000000000..a665cfa7e59d7 --- /dev/null +++ b/substrate/frame/revive/src/tests/json_trace/call_pvm.json @@ -0,0 +1,293 @@ +{ + "gas": 549956372, + "weightConsumed": { + "ref_time": 0, + "proof_size": 0 + }, + "baseCallWeight": { + "ref_time": 0, + "proof_size": 0 + }, + "failed": false, + "returnValue": "0x000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002a", + "structLogs": [ + { + "gas": 249686684201, + "gasCost": 33000, + "weightCost": { + "ref_time": 330000, + "proof_size": 0 + }, + "depth": 1, + "op": "call_data_size", + "returned": "0xe4" + }, + { + "gas": 249685987644, + "gasCost": 34300, + "weightCost": { + "ref_time": 343000, + "proof_size": 0 + }, + "depth": 1, + "op": "call_data_load", + "args": [ + "0xfffdf960", + "0x0" + ] + }, + { + "gas": 249685851008, + "gasCost": 31900, + "weightCost": { + "ref_time": 319000, + "proof_size": 0 + }, + "depth": 1, + "op": "value_transferred", + "args": [ + "0xfffdffa0" + ] + }, + { + "gas": 249685539545, + "gasCost": 34300, + "weightCost": { + "ref_time": 343000, + "proof_size": 0 + }, + "depth": 1, + "op": "call_data_load", + "args": [ + "0xfffdf800", + "0x4" + ] + }, + { + "gas": 249685215835, + "gasCost": 34300, + "weightCost": { + "ref_time": 343000, + "proof_size": 0 + }, + "depth": 1, + "op": "call_data_load", + "args": [ + "0xfffdf800", + "0x24" + ] + }, + { + "gas": 249684980740, + "gasCost": 34300, + "weightCost": { + "ref_time": 343000, + "proof_size": 0 + }, + "depth": 1, + "op": "call_data_load", + "args": [ + "0xfffdf820", + "0x44" + ] + }, + { + "gas": 249684455188, + "gasCost": 34300, + "weightCost": { + "ref_time": 343000, + "proof_size": 0 + }, + "depth": 1, + "op": "call_data_load", + "args": [ + "0xfffdf680", + "0x84" + ] + }, + { + "gas": 249681418905, + "gasCost": 50064, + "weightCost": { + "ref_time": 500644, + "proof_size": 0 + }, + "depth": 1, + "op": "call_data_copy", + "args": [ + "0x200e0", + "0x24", + "0xa4" + ] + }, + { + "gas": 249680424672, + "gasCost": 34300, + "weightCost": { + "ref_time": 343000, + "proof_size": 0 + }, + "depth": 1, + "op": "call_data_load", + "args": [ + "0xfffdf7e0", + "0x64" + ] + }, + { + "gas": 249678599448, + "gasCost": 217637376, + "weightCost": { + "ref_time": 349515238, + "proof_size": 9578 + }, + "depth": 1, + "op": "call_evm", + "args": [ + "0x8", + "0x40040", + "0xfffdf820", + "0xffffffffffffffff", + "0x24000200e0", + "0xfffdf80000020040" + ], + "returned": "0x0" + }, + { + "gas": 249464270743, + "gasCost": 33000, + "weightCost": { + "ref_time": 330000, + "proof_size": 0 + }, + "depth": 2, + "op": "call_data_size", + "returned": "0x24" + }, + { + "gas": 249463574186, + "gasCost": 34300, + "weightCost": { + "ref_time": 343000, + "proof_size": 0 + }, + "depth": 2, + "op": "call_data_load", + "args": [ + "0xfffdfce0", + "0x0" + ] + }, + { + "gas": 249463398166, + "gasCost": 31900, + "weightCost": { + "ref_time": 319000, + "proof_size": 0 + }, + "depth": 2, + "op": "value_transferred", + "args": [ + "0xfffdffa0" + ] + }, + { + "gas": 249463180240, + "gasCost": 34300, + "weightCost": { + "ref_time": 343000, + "proof_size": 0 + }, + "depth": 2, + "op": "call_data_load", + "args": [ + "0xfffdfca0", + "0x4" + ] + }, + { + "gas": 249461064559, + "gasCost": 53587, + "weightCost": { + "ref_time": 535865, + "proof_size": 0 + }, + "depth": 2, + "op": "seal_return", + "args": [ + "0x0", + "0x200a0", + "0x20" + ] + }, + { + "gas": 249460894198, + "gasCost": 31900, + "weightCost": { + "ref_time": 319000, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "op": "return_data_size", + "returned": "0x20" + }, + { + "gas": 249460799346, + "gasCost": 31900, + "weightCost": { + "ref_time": 319000, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "op": "return_data_size", + "returned": "0x20" + }, + { + "gas": 249458385762, + "gasCost": 31900, + "weightCost": { + "ref_time": 319000, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "op": "return_data_size", + "returned": "0x20" + }, + { + "gas": 249458093991, + "gasCost": 49550, + "weightCost": { + "ref_time": 495496, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "op": "return_data_copy", + "args": [ + "0x20140", + "0xfffdf720", + "0x0" + ] + }, + { + "gas": 249451099136, + "gasCost": 55507, + "weightCost": { + "ref_time": 555065, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "op": "seal_return", + "args": [ + "0x0", + "0x20160", + "0x80" + ] + } + ] +} + diff --git a/substrate/frame/revive/src/tests/json_trace/delegatecall_evm.json b/substrate/frame/revive/src/tests/json_trace/delegatecall_evm.json new file mode 100644 index 0000000000000..039d2503e5337 --- /dev/null +++ b/substrate/frame/revive/src/tests/json_trace/delegatecall_evm.json @@ -0,0 +1,24407 @@ +{ + "gas": 109344516, + "weightConsumed": { + "ref_time": 0, + "proof_size": 0 + }, + "baseCallWeight": { + "ref_time": 0, + "proof_size": 0 + }, + "failed": false, + "returnValue": "0x000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002a", + "structLogs": [ + { + "gas": 250000982272, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 0, + "op": "PUSH1", + "stack": [] + }, + { + "gas": 250000977688, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2, + "op": "PUSH1", + "stack": [ + "0x80" + ] + }, + { + "gas": 250000973104, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 4, + "op": "MSTORE", + "stack": [ + "0x80", + "0x40" + ] + }, + { + "gas": 250000968520, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 5, + "op": "PUSH1", + "stack": [] + }, + { + "gas": 250000963936, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 7, + "op": "CALLDATASIZE", + "stack": [ + "0x4" + ] + }, + { + "gas": 250000960880, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 8, + "op": "LT", + "stack": [ + "0x4", + "0xc4" + ] + }, + { + "gas": 250000956296, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 9, + "op": "PUSH2", + "stack": [ + "0x0" + ] + }, + { + "gas": 250000951712, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 12, + "op": "JUMPI", + "stack": [ + "0x0", + "0x79" + ] + }, + { + "gas": 250000936432, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 13, + "op": "PUSH0", + "stack": [] + }, + { + "gas": 250000933376, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 14, + "op": "CALLDATALOAD", + "stack": [ + "0x0" + ] + }, + { + "gas": 250000928792, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 15, + "op": "PUSH1", + "stack": [ + "0x66b54f300000000000000000000000030e5e1bcec39a34bddda04e59dacad91" + ] + }, + { + "gas": 250000924208, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 17, + "op": "SHR", + "stack": [ + "0x66b54f300000000000000000000000030e5e1bcec39a34bddda04e59dacad91", + "0xe0" + ] + }, + { + "gas": 250000919624, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 18, + "op": "DUP1", + "stack": [ + "0x66b54f3" + ] + }, + { + "gas": 250000915040, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 19, + "op": "PUSH4", + "stack": [ + "0x66b54f3", + "0x66b54f3" + ] + }, + { + "gas": 250000910456, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 24, + "op": "GT", + "stack": [ + "0x66b54f3", + "0x66b54f3", + "0x73d4a13a" + ] + }, + { + "gas": 250000905872, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 25, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0x1" + ] + }, + { + "gas": 250000901288, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 28, + "op": "JUMPI", + "stack": [ + "0x66b54f3", + "0x1", + "0x4d" + ] + }, + { + "gas": 250000886008, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 77, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3" + ] + }, + { + "gas": 250000884480, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 78, + "op": "DUP1", + "stack": [ + "0x66b54f3" + ] + }, + { + "gas": 250000879896, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 79, + "op": "PUSH3", + "stack": [ + "0x66b54f3", + "0x66b54f3" + ] + }, + { + "gas": 250000875312, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 83, + "op": "EQ", + "stack": [ + "0x66b54f3", + "0x66b54f3", + "0xd1df6a" + ] + }, + { + "gas": 250000870728, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 84, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0x0" + ] + }, + { + "gas": 250000866144, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 87, + "op": "JUMPI", + "stack": [ + "0x66b54f3", + "0x0", + "0x7d" + ] + }, + { + "gas": 250000850864, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 88, + "op": "DUP1", + "stack": [ + "0x66b54f3" + ] + }, + { + "gas": 250000846280, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 89, + "op": "PUSH4", + "stack": [ + "0x66b54f3", + "0x66b54f3" + ] + }, + { + "gas": 250000841696, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 94, + "op": "EQ", + "stack": [ + "0x66b54f3", + "0x66b54f3", + "0x66b54f3" + ] + }, + { + "gas": 250000837112, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 95, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0x1" + ] + }, + { + "gas": 250000832528, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 98, + "op": "JUMPI", + "stack": [ + "0x66b54f3", + "0x1", + "0xba" + ] + }, + { + "gas": 250000817248, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 186, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3" + ] + }, + { + "gas": 250000815720, + "gasCost": 31900, + "weightCost": { + "ref_time": 319000, + "proof_size": 0 + }, + "depth": 1, + "pc": 187, + "op": "CALLVALUE", + "stack": [ + "0x66b54f3" + ] + }, + { + "gas": 250000783820, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 188, + "op": "DUP1", + "stack": [ + "0x66b54f3", + "0x0" + ] + }, + { + "gas": 250000779236, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 189, + "op": "ISZERO", + "stack": [ + "0x66b54f3", + "0x0", + "0x0" + ] + }, + { + "gas": 250000774652, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 190, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0x0", + "0x1" + ] + }, + { + "gas": 250000770068, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 193, + "op": "JUMPI", + "stack": [ + "0x66b54f3", + "0x0", + "0x1", + "0xc5" + ] + }, + { + "gas": 250000754788, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 197, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0x0" + ] + }, + { + "gas": 250000753260, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 198, + "op": "POP", + "stack": [ + "0x66b54f3", + "0x0" + ] + }, + { + "gas": 250000750204, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 199, + "op": "PUSH2", + "stack": [ + "0x66b54f3" + ] + }, + { + "gas": 250000745620, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 202, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0" + ] + }, + { + "gas": 250000741036, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 204, + "op": "DUP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0x4" + ] + }, + { + "gas": 250000736452, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 205, + "op": "CALLDATASIZE", + "stack": [ + "0x66b54f3", + "0xe0", + "0x4", + "0x4" + ] + }, + { + "gas": 250000733396, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 206, + "op": "SUB", + "stack": [ + "0x66b54f3", + "0xe0", + "0x4", + "0x4", + "0xc4" + ] + }, + { + "gas": 250000728812, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 207, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x4", + "0xc0" + ] + }, + { + "gas": 250000724228, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 208, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xe0", + "0x4", + "0xc0", + "0x4" + ] + }, + { + "gas": 250000719644, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 209, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0x4", + "0xc4" + ] + }, + { + "gas": 250000715060, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 210, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xc4", + "0x4" + ] + }, + { + "gas": 250000710476, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 213, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xc4", + "0x4", + "0xdb" + ] + }, + { + "gas": 250000705892, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 214, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0x4", + "0xc4" + ] + }, + { + "gas": 250000701308, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 215, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4" + ] + }, + { + "gas": 250000696724, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 218, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x9ee" + ] + }, + { + "gas": 250000684500, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2542, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4" + ] + }, + { + "gas": 250000682972, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2543, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4" + ] + }, + { + "gas": 250000679916, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2544, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0" + ] + }, + { + "gas": 250000676860, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2545, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0" + ] + }, + { + "gas": 250000673804, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2546, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "gas": 250000669220, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2548, + "op": "DUP5", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x60" + ] + }, + { + "gas": 250000664636, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2549, + "op": "DUP7", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x60", + "0x4" + ] + }, + { + "gas": 250000660052, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2550, + "op": "SUB", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x60", + "0x4", + "0xc4" + ] + }, + { + "gas": 250000655468, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2551, + "op": "SLT", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x60", + "0xc0" + ] + }, + { + "gas": 250000650884, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2552, + "op": "ISZERO", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "gas": 250000646300, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2553, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x1" + ] + }, + { + "gas": 250000641716, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 2556, + "op": "JUMPI", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x1", + "0xa05" + ] + }, + { + "gas": 250000626436, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2565, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "gas": 250000624908, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2566, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0" + ] + }, + { + "gas": 250000621852, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2567, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "gas": 250000617268, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2570, + "op": "DUP7", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12" + ] + }, + { + "gas": 250000612684, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2571, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4" + ] + }, + { + "gas": 250000608100, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2572, + "op": "DUP8", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x0" + ] + }, + { + "gas": 250000603516, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2573, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x0", + "0x4" + ] + }, + { + "gas": 250000598932, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2574, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4" + ] + }, + { + "gas": 250000594348, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2577, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x739" + ] + }, + { + "gas": 250000582124, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1849, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4" + ] + }, + { + "gas": 250000580596, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1850, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4" + ] + }, + { + "gas": 250000577540, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1851, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x0" + ] + }, + { + "gas": 250000572956, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1852, + "op": "CALLDATALOAD", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x0", + "0x4" + ] + }, + { + "gas": 250000568372, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1853, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000563788, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1854, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0" + ] + }, + { + "gas": 250000560732, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1855, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000556148, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1858, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747" + ] + }, + { + "gas": 250000551564, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1859, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000546980, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1862, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x723" + ] + }, + { + "gas": 250000534756, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1827, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000533228, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1828, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000528644, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1831, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c" + ] + }, + { + "gas": 250000524060, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1832, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000519476, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1835, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x712" + ] + }, + { + "gas": 250000507252, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1810, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000505724, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1811, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000502668, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1812, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0" + ] + }, + { + "gas": 250000498084, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1815, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c" + ] + }, + { + "gas": 250000493500, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1816, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000488916, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1819, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x6f3" + ] + }, + { + "gas": 250000476692, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1779, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000475164, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1780, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000472108, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1781, + "op": "PUSH20", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0" + ] + }, + { + "gas": 250000467524, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1802, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "gas": 250000462940, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1803, + "op": "AND", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffff", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000458356, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1804, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000453772, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1805, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0" + ] + }, + { + "gas": 250000450716, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1806, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000446132, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1807, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x71c" + ] + }, + { + "gas": 250000441548, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1808, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x71c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000438492, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1809, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x71c" + ] + }, + { + "gas": 250000426268, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1820, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000424740, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1821, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000420156, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1822, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0" + ] + }, + { + "gas": 250000417100, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1823, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000412516, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1824, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c" + ] + }, + { + "gas": 250000407932, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1825, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000404876, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1826, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x72c" + ] + }, + { + "gas": 250000392652, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1836, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000391124, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1837, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000386540, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1838, + "op": "EQ", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000381956, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1839, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x1" + ] + }, + { + "gas": 250000377372, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 1842, + "op": "JUMPI", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x1", + "0x736" + ] + }, + { + "gas": 250000362092, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1846, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000360564, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1847, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000357508, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1848, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x747" + ] + }, + { + "gas": 250000345284, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1863, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000343756, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1864, + "op": "SWAP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0xa12", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000339172, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1865, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xc4", + "0x4", + "0xa12" + ] + }, + { + "gas": 250000334588, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1866, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xa12", + "0x4", + "0xc4" + ] + }, + { + "gas": 250000331532, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1867, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xa12", + "0x4" + ] + }, + { + "gas": 250000328476, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1868, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xa12" + ] + }, + { + "gas": 250000316252, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2578, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000314724, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2579, + "op": "SWAP4", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x0", + "0x0", + "0x0", + "0x0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 250000310140, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2580, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0", + "0x0" + ] + }, + { + "gas": 250000307084, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2581, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x0" + ] + }, + { + "gas": 250000304028, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2582, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0" + ] + }, + { + "gas": 250000299444, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2584, + "op": "DUP5", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x20" + ] + }, + { + "gas": 250000294860, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2585, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x20", + "0x4" + ] + }, + { + "gas": 250000290276, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2586, + "op": "CALLDATALOAD", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x24" + ] + }, + { + "gas": 250000285692, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2587, + "op": "PUSH8", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60" + ] + }, + { + "gas": 250000281108, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2596, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xffffffffffffffff" + ] + }, + { + "gas": 250000276524, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2597, + "op": "GT", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xffffffffffffffff", + "0x60" + ] + }, + { + "gas": 250000271940, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2598, + "op": "ISZERO", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0x0" + ] + }, + { + "gas": 250000267356, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2599, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0x1" + ] + }, + { + "gas": 250000262772, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 2602, + "op": "JUMPI", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0x1", + "0xa33" + ] + }, + { + "gas": 250000247492, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2611, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60" + ] + }, + { + "gas": 250000245964, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2612, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60" + ] + }, + { + "gas": 250000241380, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2615, + "op": "DUP7", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f" + ] + }, + { + "gas": 250000236796, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2616, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4" + ] + }, + { + "gas": 250000232212, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2617, + "op": "DUP8", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x60" + ] + }, + { + "gas": 250000227628, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2618, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x60", + "0x4" + ] + }, + { + "gas": 250000223044, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2619, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64" + ] + }, + { + "gas": 250000218460, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2622, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x899" + ] + }, + { + "gas": 250000206236, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2201, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64" + ] + }, + { + "gas": 250000204708, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2202, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64" + ] + }, + { + "gas": 250000201652, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2203, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0" + ] + }, + { + "gas": 250000197068, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2204, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0xc4" + ] + }, + { + "gas": 250000192484, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2206, + "op": "DUP4", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0xc4", + "0x1f" + ] + }, + { + "gas": 250000187900, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2207, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0xc4", + "0x1f", + "0x64" + ] + }, + { + "gas": 250000183316, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2208, + "op": "SLT", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0xc4", + "0x83" + ] + }, + { + "gas": 250000178732, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2209, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x1" + ] + }, + { + "gas": 250000174148, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 2212, + "op": "JUMPI", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x1", + "0x8ad" + ] + }, + { + "gas": 250000158868, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2221, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0" + ] + }, + { + "gas": 250000157340, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2222, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0" + ] + }, + { + "gas": 250000152756, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2223, + "op": "CALLDATALOAD", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x64" + ] + }, + { + "gas": 250000148172, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2224, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24" + ] + }, + { + "gas": 250000143588, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2227, + "op": "DUP5", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd" + ] + }, + { + "gas": 250000139004, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2228, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4" + ] + }, + { + "gas": 250000134420, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2229, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24" + ] + }, + { + "gas": 250000129836, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2231, + "op": "DUP7", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x20" + ] + }, + { + "gas": 250000125252, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2232, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x20", + "0x64" + ] + }, + { + "gas": 250000120668, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2233, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84" + ] + }, + { + "gas": 250000116084, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2236, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x858" + ] + }, + { + "gas": 250000103860, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2136, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84" + ] + }, + { + "gas": 250000102332, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2137, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84" + ] + }, + { + "gas": 250000099276, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2138, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0" + ] + }, + { + "gas": 250000094692, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2141, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a" + ] + }, + { + "gas": 250000090108, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2144, + "op": "DUP5", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865" + ] + }, + { + "gas": 250000085524, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2145, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24" + ] + }, + { + "gas": 250000080940, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2148, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x81a" + ] + }, + { + "gas": 250000068716, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2074, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24" + ] + }, + { + "gas": 250000067188, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2075, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24" + ] + }, + { + "gas": 250000064132, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2076, + "op": "PUSH8", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0" + ] + }, + { + "gas": 250000059548, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2085, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "gas": 250000054964, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2086, + "op": "GT", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0xffffffffffffffff", + "0x24" + ] + }, + { + "gas": 250000050380, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2087, + "op": "ISZERO", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x0" + ] + }, + { + "gas": 250000045796, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2088, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x1" + ] + }, + { + "gas": 250000041212, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 2091, + "op": "JUMPI", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x1", + "0x834" + ] + }, + { + "gas": 250000025932, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2100, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0" + ] + }, + { + "gas": 250000024404, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2101, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0" + ] + }, + { + "gas": 250000019820, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2104, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d" + ] + }, + { + "gas": 250000015236, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2105, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24" + ] + }, + { + "gas": 250000010652, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2108, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24", + "0x792" + ] + }, + { + "gas": 249999998428, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1938, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24" + ] + }, + { + "gas": 249999996900, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1939, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24" + ] + }, + { + "gas": 249999993844, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1940, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24", + "0x0" + ] + }, + { + "gas": 249999989260, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1942, + "op": "NOT", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24", + "0x0", + "0x1f" + ] + }, + { + "gas": 249999984676, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1943, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "gas": 249999980092, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1945, + "op": "DUP4", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" + ] + }, + { + "gas": 249999975508, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1946, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", + "0x24" + ] + }, + { + "gas": 249999970924, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1947, + "op": "AND", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x43" + ] + }, + { + "gas": 249999966340, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1948, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24", + "0x0", + "0x40" + ] + }, + { + "gas": 249999961756, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1949, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24", + "0x40", + "0x0" + ] + }, + { + "gas": 249999958700, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1950, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x83d", + "0x24", + "0x40" + ] + }, + { + "gas": 249999954116, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1951, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x40", + "0x24", + "0x83d" + ] + }, + { + "gas": 249999949532, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1952, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x40", + "0x83d", + "0x24" + ] + }, + { + "gas": 249999946476, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1953, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x40", + "0x83d" + ] + }, + { + "gas": 249999934252, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2109, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x40" + ] + }, + { + "gas": 249999932724, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2110, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x0", + "0x40" + ] + }, + { + "gas": 249999928140, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2111, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x40", + "0x0" + ] + }, + { + "gas": 249999925084, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2112, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x40" + ] + }, + { + "gas": 249999920500, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2114, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x40", + "0x20" + ] + }, + { + "gas": 249999915916, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2115, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x40", + "0x20", + "0x40" + ] + }, + { + "gas": 249999911332, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2116, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x40", + "0x60" + ] + }, + { + "gas": 249999906748, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2117, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x60", + "0x40" + ] + }, + { + "gas": 249999903692, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2118, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x865", + "0x24", + "0x60" + ] + }, + { + "gas": 249999899108, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2119, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x24", + "0x865" + ] + }, + { + "gas": 249999894524, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2120, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x865", + "0x24" + ] + }, + { + "gas": 249999891468, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2121, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x865" + ] + }, + { + "gas": 249999879244, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2149, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60" + ] + }, + { + "gas": 249999877716, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2150, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60" + ] + }, + { + "gas": 249999873132, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2153, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x800" + ] + }, + { + "gas": 249999860908, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2048, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60" + ] + }, + { + "gas": 249999859380, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2049, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60" + ] + }, + { + "gas": 249999856324, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2050, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x0" + ] + }, + { + "gas": 249999851740, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2053, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x809" + ] + }, + { + "gas": 249999847156, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2056, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x809", + "0x6e2" + ] + }, + { + "gas": 249999834932, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1762, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x809" + ] + }, + { + "gas": 249999833404, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1763, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x809" + ] + }, + { + "gas": 249999830348, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1764, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x809", + "0x0" + ] + }, + { + "gas": 249999825764, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1766, + "op": "MLOAD", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x809", + "0x0", + "0x40" + ] + }, + { + "gas": 249999821180, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1767, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x809", + "0x0", + "0x80" + ] + }, + { + "gas": 249999816596, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1768, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x809", + "0x80", + "0x0" + ] + }, + { + "gas": 249999813540, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1769, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x809", + "0x80" + ] + }, + { + "gas": 249999808956, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1770, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x80", + "0x809" + ] + }, + { + "gas": 249999796732, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2057, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x80" + ] + }, + { + "gas": 249999795204, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2058, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x0", + "0x80" + ] + }, + { + "gas": 249999790620, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2059, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x0" + ] + }, + { + "gas": 249999787564, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2060, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80" + ] + }, + { + "gas": 249999782980, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2063, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815" + ] + }, + { + "gas": 249999778396, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2064, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60" + ] + }, + { + "gas": 249999773812, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2065, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80" + ] + }, + { + "gas": 249999769228, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2068, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7cf" + ] + }, + { + "gas": 249999757004, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1999, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80" + ] + }, + { + "gas": 249999755476, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2000, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80" + ] + }, + { + "gas": 249999750892, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2003, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8" + ] + }, + { + "gas": 249999746308, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2004, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60" + ] + }, + { + "gas": 249999741724, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2007, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60", + "0x792" + ] + }, + { + "gas": 249999729500, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1938, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60" + ] + }, + { + "gas": 249999727972, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1939, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60" + ] + }, + { + "gas": 249999724916, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1940, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60", + "0x0" + ] + }, + { + "gas": 249999720332, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1942, + "op": "NOT", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60", + "0x0", + "0x1f" + ] + }, + { + "gas": 249999715748, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1943, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "gas": 249999711164, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1945, + "op": "DUP4", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" + ] + }, + { + "gas": 249999706580, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1946, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", + "0x60" + ] + }, + { + "gas": 249999701996, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1947, + "op": "AND", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x7f" + ] + }, + { + "gas": 249999697412, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1948, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60", + "0x0", + "0x60" + ] + }, + { + "gas": 249999692828, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1949, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60", + "0x60", + "0x0" + ] + }, + { + "gas": 249999689772, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1950, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x7d8", + "0x60", + "0x60" + ] + }, + { + "gas": 249999685188, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1951, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x60", + "0x60", + "0x7d8" + ] + }, + { + "gas": 249999680604, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1952, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x60", + "0x7d8", + "0x60" + ] + }, + { + "gas": 249999677548, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1953, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x60", + "0x7d8" + ] + }, + { + "gas": 249999665324, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2008, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x60" + ] + }, + { + "gas": 249999663796, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2009, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x60" + ] + }, + { + "gas": 249999659212, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2010, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0x60", + "0x80" + ] + }, + { + "gas": 249999654628, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2011, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0" + ] + }, + { + "gas": 249999650044, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2012, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0x80" + ] + }, + { + "gas": 249999645460, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2013, + "op": "LT", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0x80", + "0xe0" + ] + }, + { + "gas": 249999640876, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2014, + "op": "PUSH8", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0x0" + ] + }, + { + "gas": 249999636292, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2023, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999631708, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2024, + "op": "GT", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0x0", + "0xffffffffffffffff", + "0xe0" + ] + }, + { + "gas": 249999627124, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2025, + "op": "OR", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0x0", + "0x0" + ] + }, + { + "gas": 249999622540, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2026, + "op": "ISZERO", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0x0" + ] + }, + { + "gas": 249999617956, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2027, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0x1" + ] + }, + { + "gas": 249999613372, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 2030, + "op": "JUMPI", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0x1", + "0x7f7" + ] + }, + { + "gas": 249999598092, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2039, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0" + ] + }, + { + "gas": 249999596564, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2040, + "op": "DUP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0" + ] + }, + { + "gas": 249999591980, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2041, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0xe0" + ] + }, + { + "gas": 249999587396, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2043, + "op": "MSTORE", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0", + "0xe0", + "0x40" + ] + }, + { + "gas": 249999582812, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2044, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80", + "0xe0" + ] + }, + { + "gas": 249999579756, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2045, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60", + "0x80" + ] + }, + { + "gas": 249999576700, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2046, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815", + "0x60" + ] + }, + { + "gas": 249999573644, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2047, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80", + "0x815" + ] + }, + { + "gas": 249999561420, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2069, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80" + ] + }, + { + "gas": 249999559892, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2070, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x86a", + "0x60", + "0x80" + ] + }, + { + "gas": 249999555308, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2071, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x80", + "0x60", + "0x86a" + ] + }, + { + "gas": 249999550724, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2072, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x80", + "0x86a", + "0x60" + ] + }, + { + "gas": 249999547668, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2073, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x80", + "0x86a" + ] + }, + { + "gas": 249999535444, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2154, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x80" + ] + }, + { + "gas": 249999533916, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2155, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x0", + "0x80" + ] + }, + { + "gas": 249999529332, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2156, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0x0" + ] + }, + { + "gas": 249999526276, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2157, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80" + ] + }, + { + "gas": 249999521692, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2158, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0x24" + ] + }, + { + "gas": 249999517108, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2159, + "op": "MSTORE", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0x24", + "0x80" + ] + }, + { + "gas": 249999512524, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2160, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80" + ] + }, + { + "gas": 249999507940, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2162, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0x20" + ] + }, + { + "gas": 249999503356, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2163, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0x20", + "0x80" + ] + }, + { + "gas": 249999498772, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2164, + "op": "DUP5", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0" + ] + }, + { + "gas": 249999494188, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2165, + "op": "DUP5", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0xc4" + ] + }, + { + "gas": 249999489604, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2166, + "op": "DUP5", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0xc4", + "0x24" + ] + }, + { + "gas": 249999485020, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2167, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0xc4", + "0x24", + "0x84" + ] + }, + { + "gas": 249999480436, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2168, + "op": "GT", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0xc4", + "0xa8" + ] + }, + { + "gas": 249999475852, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2169, + "op": "ISZERO", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x0" + ] + }, + { + "gas": 249999471268, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2170, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x1" + ] + }, + { + "gas": 249999466684, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 2173, + "op": "JUMPI", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x1", + "0x886" + ] + }, + { + "gas": 249999451404, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2182, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0" + ] + }, + { + "gas": 249999449876, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2183, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0" + ] + }, + { + "gas": 249999445292, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2186, + "op": "DUP5", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x891" + ] + }, + { + "gas": 249999440708, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2187, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x891", + "0x24" + ] + }, + { + "gas": 249999436124, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2188, + "op": "DUP6", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0" + ] + }, + { + "gas": 249999431540, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2189, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0x84" + ] + }, + { + "gas": 249999426956, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2192, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0x84", + "0x84a" + ] + }, + { + "gas": 249999414732, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2122, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0x84" + ] + }, + { + "gas": 249999413204, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2123, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0x84" + ] + }, + { + "gas": 249999408620, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2124, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0x84", + "0x24" + ] + }, + { + "gas": 249999404036, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2125, + "op": "DUP4", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0x84", + "0x24", + "0x84" + ] + }, + { + "gas": 249999399452, + "gasCost": 49631, + "weightCost": { + "ref_time": 496308, + "proof_size": 0 + }, + "depth": 1, + "pc": 2126, + "op": "CALLDATACOPY", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0x84", + "0x24", + "0x84", + "0xa0" + ] + }, + { + "gas": 249999349821, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2127, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0x84" + ] + }, + { + "gas": 249999346765, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2128, + "op": "DUP4", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0x84", + "0x0" + ] + }, + { + "gas": 249999342181, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2129, + "op": "DUP4", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0x84", + "0x0", + "0x24" + ] + }, + { + "gas": 249999337597, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2130, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0x84", + "0x0", + "0x24", + "0xa0" + ] + }, + { + "gas": 249999333013, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2131, + "op": "MSTORE", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0x84", + "0x0", + "0xc4" + ] + }, + { + "gas": 249999328429, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2132, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0", + "0x84" + ] + }, + { + "gas": 249999325373, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2133, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x891", + "0x24", + "0xa0" + ] + }, + { + "gas": 249999322317, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2134, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x891", + "0x24" + ] + }, + { + "gas": 249999319261, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2135, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0", + "0x891" + ] + }, + { + "gas": 249999307037, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2193, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0" + ] + }, + { + "gas": 249999305509, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2194, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80", + "0xa0" + ] + }, + { + "gas": 249999302453, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2195, + "op": "SWAP4", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x8bd", + "0xc4", + "0x24", + "0x84", + "0x80" + ] + }, + { + "gas": 249999297869, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2196, + "op": "SWAP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x80", + "0xc4", + "0x24", + "0x84", + "0x8bd" + ] + }, + { + "gas": 249999293285, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2197, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x80", + "0x8bd", + "0x24", + "0x84", + "0xc4" + ] + }, + { + "gas": 249999290229, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2198, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x80", + "0x8bd", + "0x24", + "0x84" + ] + }, + { + "gas": 249999287173, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2199, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x80", + "0x8bd", + "0x24" + ] + }, + { + "gas": 249999284117, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2200, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x80", + "0x8bd" + ] + }, + { + "gas": 249999271893, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2237, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x80" + ] + }, + { + "gas": 249999270365, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2238, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x0", + "0x24", + "0x80" + ] + }, + { + "gas": 249999265781, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2239, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x80", + "0x24", + "0x0" + ] + }, + { + "gas": 249999262725, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2240, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x80", + "0x24" + ] + }, + { + "gas": 249999259669, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2241, + "op": "SWAP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0xa3f", + "0xc4", + "0x64", + "0x80" + ] + }, + { + "gas": 249999255085, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2242, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0x80", + "0xc4", + "0x64", + "0xa3f" + ] + }, + { + "gas": 249999250501, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2243, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0x80", + "0xa3f", + "0x64", + "0xc4" + ] + }, + { + "gas": 249999247445, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2244, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0x80", + "0xa3f", + "0x64" + ] + }, + { + "gas": 249999244389, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2245, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0x80", + "0xa3f" + ] + }, + { + "gas": 249999232165, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2623, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0x80" + ] + }, + { + "gas": 249999230637, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2624, + "op": "SWAP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x0", + "0x0", + "0x60", + "0x80" + ] + }, + { + "gas": 249999226053, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2625, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x60", + "0x0" + ] + }, + { + "gas": 249999222997, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2626, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x60" + ] + }, + { + "gas": 249999219941, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2627, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0" + ] + }, + { + "gas": 249999215357, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2629, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40" + ] + }, + { + "gas": 249999210773, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2632, + "op": "DUP7", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50" + ] + }, + { + "gas": 249999206189, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2633, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4" + ] + }, + { + "gas": 249999201605, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2634, + "op": "DUP8", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x40" + ] + }, + { + "gas": 249999197021, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2635, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x40", + "0x4" + ] + }, + { + "gas": 249999192437, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2636, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44" + ] + }, + { + "gas": 249999187853, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2639, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0x776" + ] + }, + { + "gas": 249999175629, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1910, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44" + ] + }, + { + "gas": 249999174101, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1911, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44" + ] + }, + { + "gas": 249999171045, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1912, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0x0" + ] + }, + { + "gas": 249999166461, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1913, + "op": "CALLDATALOAD", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0x0", + "0x44" + ] + }, + { + "gas": 249999161877, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1914, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999157293, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1915, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x0" + ] + }, + { + "gas": 249999154237, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1916, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999149653, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1919, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784" + ] + }, + { + "gas": 249999145069, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1920, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999140485, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1923, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x760" + ] + }, + { + "gas": 249999128261, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1888, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999126733, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1889, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999122149, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1892, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769" + ] + }, + { + "gas": 249999117565, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1893, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999112981, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1896, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff", + "0x74d" + ] + }, + { + "gas": 249999100757, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1869, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999099229, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1870, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999096173, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1871, + "op": "PUSH8", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff", + "0x0" + ] + }, + { + "gas": 249999091589, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1880, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999087005, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1881, + "op": "AND", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff", + "0x0", + "0xffffffffffffffff", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999082421, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1882, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999077837, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1883, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff", + "0xffffffffffffffff", + "0x0" + ] + }, + { + "gas": 249999074781, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1884, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999070197, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1885, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0xffffffffffffffff", + "0xffffffffffffffff", + "0x769" + ] + }, + { + "gas": 249999065613, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1886, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0xffffffffffffffff", + "0x769", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999062557, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1887, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0xffffffffffffffff", + "0x769" + ] + }, + { + "gas": 249999050333, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1897, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999048805, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1898, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999044221, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1899, + "op": "EQ", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0xffffffffffffffff", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999039637, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1900, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x1" + ] + }, + { + "gas": 249999035053, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "pc": 1903, + "op": "JUMPI", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff", + "0x1", + "0x773" + ] + }, + { + "gas": 249999019773, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1907, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999018245, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1908, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999015189, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1909, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff", + "0x784" + ] + }, + { + "gas": 249999002965, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 1924, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff" + ] + }, + { + "gas": 249999001437, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1925, + "op": "SWAP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xa50", + "0xc4", + "0x44", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998996853, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 1926, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xffffffffffffffff", + "0xc4", + "0x44", + "0xa50" + ] + }, + { + "gas": 249998992269, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1927, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xffffffffffffffff", + "0xa50", + "0x44", + "0xc4" + ] + }, + { + "gas": 249998989213, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 1928, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xffffffffffffffff", + "0xa50", + "0x44" + ] + }, + { + "gas": 249998986157, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 1929, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xffffffffffffffff", + "0xa50" + ] + }, + { + "gas": 249998973933, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2640, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998972405, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2641, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x0", + "0x40", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998967821, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2642, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x40", + "0x0" + ] + }, + { + "gas": 249998964765, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2643, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x40" + ] + }, + { + "gas": 249998961709, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2644, + "op": "SWAP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0x4", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998957125, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2645, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0xffffffffffffffff", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0x4" + ] + }, + { + "gas": 249998954069, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2646, + "op": "SWAP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0xc4", + "0xffffffffffffffff", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80" + ] + }, + { + "gas": 249998949485, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2647, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0x80", + "0xffffffffffffffff", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xc4" + ] + }, + { + "gas": 249998946429, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2648, + "op": "SWAP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0xdb", + "0x80", + "0xffffffffffffffff", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 249998941845, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2649, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0xdb" + ] + }, + { + "gas": 249998929621, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 219, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998928093, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 220, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998923509, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 223, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x2b5" + ] + }, + { + "gas": 249998911285, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 693, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998909757, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 694, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998906701, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 695, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0" + ] + }, + { + "gas": 249998902117, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 697, + "op": "DUP5", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60" + ] + }, + { + "gas": 249998897533, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 698, + "op": "PUSH20", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 249998892949, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 719, + "op": "AND", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffffffffffffffffffffffffffff" + ] + }, + { + "gas": 249998888365, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 720, + "op": "DUP4", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 249998883781, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 721, + "op": "PUSH8", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998879197, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 730, + "op": "AND", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998874613, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 731, + "op": "DUP6", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff" + ] + }, + { + "gas": 249998870029, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 732, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x80" + ] + }, + { + "gas": 249998865445, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 734, + "op": "MLOAD", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x80", + "0x40" + ] + }, + { + "gas": 249998860861, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 735, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x80", + "0xe0" + ] + }, + { + "gas": 249998856277, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 738, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x80", + "0xe0", + "0x2e8" + ] + }, + { + "gas": 249998851693, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 739, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0xe0", + "0x80" + ] + }, + { + "gas": 249998847109, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 740, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0" + ] + }, + { + "gas": 249998842525, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 743, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0xc7d" + ] + }, + { + "gas": 249998830301, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 3197, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0" + ] + }, + { + "gas": 249998828773, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3198, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0" + ] + }, + { + "gas": 249998825717, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3199, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0" + ] + }, + { + "gas": 249998821133, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3202, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88" + ] + }, + { + "gas": 249998816549, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3203, + "op": "DUP5", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0" + ] + }, + { + "gas": 249998811965, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3204, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80" + ] + }, + { + "gas": 249998807381, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 3207, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0xc4d" + ] + }, + { + "gas": 249998795157, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 3149, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80" + ] + }, + { + "gas": 249998793629, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3150, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80" + ] + }, + { + "gas": 249998790573, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3151, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0" + ] + }, + { + "gas": 249998785989, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3154, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0xc57" + ] + }, + { + "gas": 249998781405, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3155, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0xc57", + "0x80" + ] + }, + { + "gas": 249998776821, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 3158, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0xc57", + "0x80", + "0x960" + ] + }, + { + "gas": 249998764597, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2400, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0xc57", + "0x80" + ] + }, + { + "gas": 249998763069, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2401, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0xc57", + "0x80" + ] + }, + { + "gas": 249998760013, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2402, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0xc57", + "0x80", + "0x0" + ] + }, + { + "gas": 249998755429, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2403, + "op": "MLOAD", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0xc57", + "0x80", + "0x0", + "0x80" + ] + }, + { + "gas": 249998750845, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2404, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0xc57", + "0x80", + "0x0", + "0x24" + ] + }, + { + "gas": 249998746261, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2405, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0xc57", + "0x80", + "0x24", + "0x0" + ] + }, + { + "gas": 249998743205, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2406, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0xc57", + "0x80", + "0x24" + ] + }, + { + "gas": 249998738621, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2407, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0x80", + "0xc57" + ] + }, + { + "gas": 249998734037, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2408, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc57", + "0x80" + ] + }, + { + "gas": 249998730981, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2409, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc57" + ] + }, + { + "gas": 249998718757, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 3159, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24" + ] + }, + { + "gas": 249998717229, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3160, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24" + ] + }, + { + "gas": 249998712645, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3163, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc61" + ] + }, + { + "gas": 249998708061, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3164, + "op": "DUP6", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc61", + "0x24" + ] + }, + { + "gas": 249998703477, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3165, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc61", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998698893, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 3168, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc61", + "0x24", + "0xe0", + "0xc43" + ] + }, + { + "gas": 249998686669, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 3139, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc61", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998685141, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3140, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc61", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998682085, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3141, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc61", + "0x24", + "0xe0", + "0x0" + ] + }, + { + "gas": 249998677501, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3142, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc61", + "0x24", + "0xe0", + "0x0", + "0xe0" + ] + }, + { + "gas": 249998672917, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3143, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc61", + "0x24", + "0xe0", + "0xe0", + "0x0" + ] + }, + { + "gas": 249998669861, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3144, + "op": "SWAP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc61", + "0x24", + "0xe0", + "0xe0" + ] + }, + { + "gas": 249998665277, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3145, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xe0", + "0x24", + "0xe0", + "0xc61" + ] + }, + { + "gas": 249998660693, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3146, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xe0", + "0xc61", + "0xe0", + "0x24" + ] + }, + { + "gas": 249998657637, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3147, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xe0", + "0xc61", + "0xe0" + ] + }, + { + "gas": 249998654581, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 3148, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xe0", + "0xc61" + ] + }, + { + "gas": 249998642357, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 3169, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998640829, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3170, + "op": "SWAP4", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998636245, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3171, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998633189, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3172, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24" + ] + }, + { + "gas": 249998628605, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3175, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71" + ] + }, + { + "gas": 249998624021, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3176, + "op": "DUP6", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24" + ] + }, + { + "gas": 249998619437, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3177, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998614853, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3179, + "op": "DUP7", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0x20" + ] + }, + { + "gas": 249998610269, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3180, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0x20", + "0x80" + ] + }, + { + "gas": 249998605685, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3181, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0" + ] + }, + { + "gas": 249998601101, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 3184, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0", + "0x97a" + ] + }, + { + "gas": 249998588877, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 2426, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0" + ] + }, + { + "gas": 249998587349, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2427, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0" + ] + }, + { + "gas": 249998582765, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2428, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0", + "0x24" + ] + }, + { + "gas": 249998578181, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2429, + "op": "DUP4", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0", + "0x24", + "0xa0" + ] + }, + { + "gas": 249998573597, + "gasCost": 13752, + "weightCost": { + "ref_time": 137520, + "proof_size": 0 + }, + "depth": 1, + "pc": 2430, + "op": "MCOPY", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0", + "0x24", + "0xa0", + "0xe0" + ] + }, + { + "gas": 249998559845, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2431, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0" + ] + }, + { + "gas": 249998556789, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2432, + "op": "DUP4", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0", + "0x0" + ] + }, + { + "gas": 249998552205, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2433, + "op": "DUP4", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0", + "0x0", + "0x24" + ] + }, + { + "gas": 249998547621, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2434, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0", + "0x0", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998543037, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2435, + "op": "MSTORE", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0", + "0x0", + "0x104" + ] + }, + { + "gas": 249998538453, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2436, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0", + "0xa0" + ] + }, + { + "gas": 249998535397, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2437, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998532341, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 2438, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71", + "0x24" + ] + }, + { + "gas": 249998529285, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 2439, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0xc71" + ] + }, + { + "gas": 249998517061, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 3185, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24" + ] + }, + { + "gas": 249998515533, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3186, + "op": "DUP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24" + ] + }, + { + "gas": 249998510949, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3187, + "op": "DUP5", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0x24" + ] + }, + { + "gas": 249998506365, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3188, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998501781, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3189, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x0", + "0x24", + "0x104" + ] + }, + { + "gas": 249998497197, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3190, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x104", + "0x24", + "0x0" + ] + }, + { + "gas": 249998494141, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3191, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x104", + "0x24" + ] + }, + { + "gas": 249998491085, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3192, + "op": "SWAP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0xc88", + "0xe0", + "0x80", + "0x104" + ] + }, + { + "gas": 249998486501, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3193, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0x104", + "0xe0", + "0x80", + "0xc88" + ] + }, + { + "gas": 249998481917, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3194, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0x104", + "0xc88", + "0x80", + "0xe0" + ] + }, + { + "gas": 249998478861, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3195, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0x104", + "0xc88", + "0x80" + ] + }, + { + "gas": 249998475805, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 3196, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0x104", + "0xc88" + ] + }, + { + "gas": 249998463581, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 3208, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0x104" + ] + }, + { + "gas": 249998462053, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3209, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0xe0", + "0x0", + "0x104" + ] + }, + { + "gas": 249998457469, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3210, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0x104", + "0x0", + "0xe0" + ] + }, + { + "gas": 249998454413, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3211, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0x104", + "0x0" + ] + }, + { + "gas": 249998449829, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3212, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0x104", + "0x0", + "0x104" + ] + }, + { + "gas": 249998445245, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3213, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0x104", + "0x104", + "0x0" + ] + }, + { + "gas": 249998442189, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3214, + "op": "SWAP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x2e8", + "0x80", + "0x104", + "0x104" + ] + }, + { + "gas": 249998437605, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 3215, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x104", + "0x80", + "0x104", + "0x2e8" + ] + }, + { + "gas": 249998433021, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3216, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x104", + "0x2e8", + "0x104", + "0x80" + ] + }, + { + "gas": 249998429965, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 3217, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x104", + "0x2e8", + "0x104" + ] + }, + { + "gas": 249998426909, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "pc": 3218, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x104", + "0x2e8" + ] + }, + { + "gas": 249998414685, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "pc": 744, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x104" + ] + }, + { + "gas": 249998413157, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "pc": 745, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x104" + ] + }, + { + "gas": 249998410101, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 746, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x104", + "0x0" + ] + }, + { + "gas": 249998405517, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 748, + "op": "MLOAD", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x104", + "0x0", + "0x40" + ] + }, + { + "gas": 249998400933, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 749, + "op": "DUP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x104", + "0x0", + "0xe0" + ] + }, + { + "gas": 249998396349, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 750, + "op": "DUP4", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x104", + "0x0", + "0xe0", + "0xe0" + ] + }, + { + "gas": 249998391765, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 751, + "op": "SUB", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x104", + "0x0", + "0xe0", + "0xe0", + "0x104" + ] + }, + { + "gas": 249998387181, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 752, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x104", + "0x0", + "0xe0", + "0x24" + ] + }, + { + "gas": 249998382597, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 753, + "op": "DUP7", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x104", + "0x0", + "0xe0", + "0x24", + "0xe0" + ] + }, + { + "gas": 249998378013, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 754, + "op": "DUP7", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x104", + "0x0", + "0xe0", + "0x24", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 249998373429, + "gasCost": 105647690, + "weightCost": { + "ref_time": 122066811, + "proof_size": 4899 + }, + "depth": 1, + "pc": 755, + "op": "DELEGATECALL", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x104", + "0x0", + "0xe0", + "0x24", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff" + ] + }, + { + "gas": 249893773763, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 0, + "op": "PUSH1", + "stack": [] + }, + { + "gas": 249893769179, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 2, + "op": "PUSH1", + "stack": [ + "0x80" + ] + }, + { + "gas": 249893764595, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 4, + "op": "MSTORE", + "stack": [ + "0x80", + "0x40" + ] + }, + { + "gas": 249893760011, + "gasCost": 31900, + "weightCost": { + "ref_time": 319000, + "proof_size": 0 + }, + "depth": 2, + "pc": 5, + "op": "CALLVALUE", + "stack": [] + }, + { + "gas": 249893728111, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 6, + "op": "DUP1", + "stack": [ + "0x0" + ] + }, + { + "gas": 249893723527, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 7, + "op": "ISZERO", + "stack": [ + "0x0", + "0x0" + ] + }, + { + "gas": 249893718943, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 8, + "op": "PUSH2", + "stack": [ + "0x0", + "0x1" + ] + }, + { + "gas": 249893714359, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 2, + "pc": 11, + "op": "JUMPI", + "stack": [ + "0x0", + "0x1", + "0xf" + ] + }, + { + "gas": 249893699079, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 15, + "op": "JUMPDEST", + "stack": [ + "0x0" + ] + }, + { + "gas": 249893697551, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 16, + "op": "POP", + "stack": [ + "0x0" + ] + }, + { + "gas": 249893694495, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 17, + "op": "PUSH1", + "stack": [] + }, + { + "gas": 249893689911, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 19, + "op": "CALLDATASIZE", + "stack": [ + "0x4" + ] + }, + { + "gas": 249893686855, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 20, + "op": "LT", + "stack": [ + "0x4", + "0x24" + ] + }, + { + "gas": 249893682271, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 21, + "op": "PUSH2", + "stack": [ + "0x0" + ] + }, + { + "gas": 249893677687, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 2, + "pc": 24, + "op": "JUMPI", + "stack": [ + "0x0", + "0x86" + ] + }, + { + "gas": 249893662407, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 25, + "op": "PUSH0", + "stack": [] + }, + { + "gas": 249893659351, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 26, + "op": "CALLDATALOAD", + "stack": [ + "0x0" + ] + }, + { + "gas": 249893654767, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 27, + "op": "PUSH1", + "stack": [ + "0x7036362200000000000000000000000000000000000000000000000000000000" + ] + }, + { + "gas": 249893650183, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 29, + "op": "SHR", + "stack": [ + "0x7036362200000000000000000000000000000000000000000000000000000000", + "0xe0" + ] + }, + { + "gas": 249893645599, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 30, + "op": "DUP1", + "stack": [ + "0x70363622" + ] + }, + { + "gas": 249893641015, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 31, + "op": "PUSH4", + "stack": [ + "0x70363622", + "0x70363622" + ] + }, + { + "gas": 249893636431, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 36, + "op": "GT", + "stack": [ + "0x70363622", + "0x70363622", + "0xb351696d" + ] + }, + { + "gas": 249893631847, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 37, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0x1" + ] + }, + { + "gas": 249893627263, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 2, + "pc": 40, + "op": "JUMPI", + "stack": [ + "0x70363622", + "0x1", + "0x59" + ] + }, + { + "gas": 249893611983, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 89, + "op": "JUMPDEST", + "stack": [ + "0x70363622" + ] + }, + { + "gas": 249893610455, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 90, + "op": "DUP1", + "stack": [ + "0x70363622" + ] + }, + { + "gas": 249893605871, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 91, + "op": "PUSH4", + "stack": [ + "0x70363622", + "0x70363622" + ] + }, + { + "gas": 249893601287, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 96, + "op": "EQ", + "stack": [ + "0x70363622", + "0x70363622", + "0x7da68f5" + ] + }, + { + "gas": 249893596703, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 97, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0x0" + ] + }, + { + "gas": 249893592119, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 2, + "pc": 100, + "op": "JUMPI", + "stack": [ + "0x70363622", + "0x0", + "0x8a" + ] + }, + { + "gas": 249893576839, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 101, + "op": "DUP1", + "stack": [ + "0x70363622" + ] + }, + { + "gas": 249893572255, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 102, + "op": "PUSH4", + "stack": [ + "0x70363622", + "0x70363622" + ] + }, + { + "gas": 249893567671, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 107, + "op": "EQ", + "stack": [ + "0x70363622", + "0x70363622", + "0x1d9a3bdd" + ] + }, + { + "gas": 249893563087, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 108, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0x0" + ] + }, + { + "gas": 249893558503, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 2, + "pc": 111, + "op": "JUMPI", + "stack": [ + "0x70363622", + "0x0", + "0x94" + ] + }, + { + "gas": 249893543223, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 112, + "op": "DUP1", + "stack": [ + "0x70363622" + ] + }, + { + "gas": 249893538639, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 113, + "op": "PUSH4", + "stack": [ + "0x70363622", + "0x70363622" + ] + }, + { + "gas": 249893534055, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 118, + "op": "EQ", + "stack": [ + "0x70363622", + "0x70363622", + "0x70363622" + ] + }, + { + "gas": 249893529471, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 119, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0x1" + ] + }, + { + "gas": 249893524887, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 2, + "pc": 122, + "op": "JUMPI", + "stack": [ + "0x70363622", + "0x1", + "0xb0" + ] + }, + { + "gas": 249893509607, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 176, + "op": "JUMPDEST", + "stack": [ + "0x70363622" + ] + }, + { + "gas": 249893508079, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 177, + "op": "PUSH2", + "stack": [ + "0x70363622" + ] + }, + { + "gas": 249893503495, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 180, + "op": "PUSH1", + "stack": [ + "0x70363622", + "0xca" + ] + }, + { + "gas": 249893498911, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 182, + "op": "DUP1", + "stack": [ + "0x70363622", + "0xca", + "0x4" + ] + }, + { + "gas": 249893494327, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 183, + "op": "CALLDATASIZE", + "stack": [ + "0x70363622", + "0xca", + "0x4", + "0x4" + ] + }, + { + "gas": 249893491271, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 184, + "op": "SUB", + "stack": [ + "0x70363622", + "0xca", + "0x4", + "0x4", + "0x24" + ] + }, + { + "gas": 249893486687, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 185, + "op": "DUP2", + "stack": [ + "0x70363622", + "0xca", + "0x4", + "0x20" + ] + }, + { + "gas": 249893482103, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 186, + "op": "ADD", + "stack": [ + "0x70363622", + "0xca", + "0x4", + "0x20", + "0x4" + ] + }, + { + "gas": 249893477519, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 187, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0xca", + "0x4", + "0x24" + ] + }, + { + "gas": 249893472935, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 188, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0x24", + "0x4" + ] + }, + { + "gas": 249893468351, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 191, + "op": "SWAP2", + "stack": [ + "0x70363622", + "0xca", + "0x24", + "0x4", + "0xc5" + ] + }, + { + "gas": 249893463767, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 192, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x4", + "0x24" + ] + }, + { + "gas": 249893459183, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 193, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4" + ] + }, + { + "gas": 249893454599, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 196, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x236" + ] + }, + { + "gas": 249893442375, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 566, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4" + ] + }, + { + "gas": 249893440847, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 567, + "op": "PUSH0", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4" + ] + }, + { + "gas": 249893437791, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 568, + "op": "PUSH1", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0" + ] + }, + { + "gas": 249893433207, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 570, + "op": "DUP3", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x20" + ] + }, + { + "gas": 249893428623, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 571, + "op": "DUP5", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4" + ] + }, + { + "gas": 249893424039, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 572, + "op": "SUB", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x20", + "0x4", + "0x24" + ] + }, + { + "gas": 249893419455, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 573, + "op": "SLT", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x20", + "0x20" + ] + }, + { + "gas": 249893414871, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 574, + "op": "ISZERO", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "gas": 249893410287, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 575, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x1" + ] + }, + { + "gas": 249893405703, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 2, + "pc": 578, + "op": "JUMPI", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x1", + "0x24b" + ] + }, + { + "gas": 249893390423, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 587, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0" + ] + }, + { + "gas": 249893388895, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 588, + "op": "PUSH0", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0" + ] + }, + { + "gas": 249893385839, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 589, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0" + ] + }, + { + "gas": 249893381255, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 592, + "op": "DUP5", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258" + ] + }, + { + "gas": 249893376671, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 593, + "op": "DUP3", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24" + ] + }, + { + "gas": 249893372087, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 594, + "op": "DUP6", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x0" + ] + }, + { + "gas": 249893367503, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 595, + "op": "ADD", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x0", + "0x4" + ] + }, + { + "gas": 249893362919, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 596, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4" + ] + }, + { + "gas": 249893358335, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 599, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x222" + ] + }, + { + "gas": 249893346111, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 546, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4" + ] + }, + { + "gas": 249893344583, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 547, + "op": "PUSH0", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4" + ] + }, + { + "gas": 249893341527, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 548, + "op": "DUP2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x0" + ] + }, + { + "gas": 249893336943, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 549, + "op": "CALLDATALOAD", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x0", + "0x4" + ] + }, + { + "gas": 249893332359, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 550, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x0", + "0x2a" + ] + }, + { + "gas": 249893327775, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 551, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x0" + ] + }, + { + "gas": 249893324719, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 552, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a" + ] + }, + { + "gas": 249893320135, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 555, + "op": "DUP2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230" + ] + }, + { + "gas": 249893315551, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 556, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a" + ] + }, + { + "gas": 249893310967, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 559, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x20c" + ] + }, + { + "gas": 249893298743, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 524, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a" + ] + }, + { + "gas": 249893297215, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 525, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a" + ] + }, + { + "gas": 249893292631, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 528, + "op": "DUP2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215" + ] + }, + { + "gas": 249893288047, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 529, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215", + "0x2a" + ] + }, + { + "gas": 249893283463, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 532, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215", + "0x2a", + "0x1f9" + ] + }, + { + "gas": 249893271239, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 505, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215", + "0x2a" + ] + }, + { + "gas": 249893269711, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 506, + "op": "PUSH0", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215", + "0x2a" + ] + }, + { + "gas": 249893266655, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 507, + "op": "PUSH8", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215", + "0x2a", + "0x0" + ] + }, + { + "gas": 249893262071, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 516, + "op": "DUP3", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215", + "0x2a", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "gas": 249893257487, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 517, + "op": "AND", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215", + "0x2a", + "0x0", + "0xffffffffffffffff", + "0x2a" + ] + }, + { + "gas": 249893252903, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 518, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215", + "0x2a", + "0x0", + "0x2a" + ] + }, + { + "gas": 249893248319, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 519, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215", + "0x2a", + "0x2a", + "0x0" + ] + }, + { + "gas": 249893245263, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 520, + "op": "SWAP2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x215", + "0x2a", + "0x2a" + ] + }, + { + "gas": 249893240679, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 521, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x2a", + "0x2a", + "0x215" + ] + }, + { + "gas": 249893236095, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 522, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x2a", + "0x215", + "0x2a" + ] + }, + { + "gas": 249893233039, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 523, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x2a", + "0x215" + ] + }, + { + "gas": 249893220815, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 533, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x2a" + ] + }, + { + "gas": 249893219287, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 534, + "op": "DUP2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x2a" + ] + }, + { + "gas": 249893214703, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 535, + "op": "EQ", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x2a", + "0x2a" + ] + }, + { + "gas": 249893210119, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 536, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x1" + ] + }, + { + "gas": 249893205535, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 2, + "pc": 539, + "op": "JUMPI", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a", + "0x1", + "0x21f" + ] + }, + { + "gas": 249893190255, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 543, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a" + ] + }, + { + "gas": 249893188727, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 544, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230", + "0x2a" + ] + }, + { + "gas": 249893185671, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 545, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a", + "0x230" + ] + }, + { + "gas": 249893173447, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 560, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a" + ] + }, + { + "gas": 249893171919, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 561, + "op": "SWAP3", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x258", + "0x24", + "0x4", + "0x2a" + ] + }, + { + "gas": 249893167335, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 562, + "op": "SWAP2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x2a", + "0x24", + "0x4", + "0x258" + ] + }, + { + "gas": 249893162751, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 563, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x2a", + "0x258", + "0x4", + "0x24" + ] + }, + { + "gas": 249893159695, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 564, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x2a", + "0x258", + "0x4" + ] + }, + { + "gas": 249893156639, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 565, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x2a", + "0x258" + ] + }, + { + "gas": 249893144415, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 600, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x2a" + ] + }, + { + "gas": 249893142887, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 601, + "op": "SWAP2", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x0", + "0x0", + "0x2a" + ] + }, + { + "gas": 249893138303, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 602, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x2a", + "0x0", + "0x0" + ] + }, + { + "gas": 249893135247, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 603, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x2a", + "0x0" + ] + }, + { + "gas": 249893132191, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 604, + "op": "SWAP3", + "stack": [ + "0x70363622", + "0xca", + "0xc5", + "0x24", + "0x4", + "0x2a" + ] + }, + { + "gas": 249893127607, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 605, + "op": "SWAP2", + "stack": [ + "0x70363622", + "0xca", + "0x2a", + "0x24", + "0x4", + "0xc5" + ] + }, + { + "gas": 249893123023, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 606, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0x2a", + "0xc5", + "0x4", + "0x24" + ] + }, + { + "gas": 249893119967, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 607, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0x2a", + "0xc5", + "0x4" + ] + }, + { + "gas": 249893116911, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 608, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xca", + "0x2a", + "0xc5" + ] + }, + { + "gas": 249893104687, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 197, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0x2a" + ] + }, + { + "gas": 249893103159, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 198, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xca", + "0x2a" + ] + }, + { + "gas": 249893098575, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 201, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xca", + "0x2a", + "0x17a" + ] + }, + { + "gas": 249893086351, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 378, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xca", + "0x2a" + ] + }, + { + "gas": 249893084823, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 379, + "op": "PUSH0", + "stack": [ + "0x70363622", + "0xca", + "0x2a" + ] + }, + { + "gas": 249893081767, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 380, + "op": "DUP2", + "stack": [ + "0x70363622", + "0xca", + "0x2a", + "0x0" + ] + }, + { + "gas": 249893077183, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 381, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0xca", + "0x2a", + "0x0", + "0x2a" + ] + }, + { + "gas": 249893072599, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 382, + "op": "POP", + "stack": [ + "0x70363622", + "0xca", + "0x2a", + "0x2a", + "0x0" + ] + }, + { + "gas": 249893069543, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 383, + "op": "SWAP2", + "stack": [ + "0x70363622", + "0xca", + "0x2a", + "0x2a" + ] + }, + { + "gas": 249893064959, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 384, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0x2a", + "0x2a", + "0xca" + ] + }, + { + "gas": 249893060375, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 385, + "op": "POP", + "stack": [ + "0x70363622", + "0x2a", + "0xca", + "0x2a" + ] + }, + { + "gas": 249893057319, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 386, + "op": "JUMP", + "stack": [ + "0x70363622", + "0x2a", + "0xca" + ] + }, + { + "gas": 249893045095, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 202, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0x2a" + ] + }, + { + "gas": 249893043567, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 203, + "op": "PUSH1", + "stack": [ + "0x70363622", + "0x2a" + ] + }, + { + "gas": 249893038983, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 205, + "op": "MLOAD", + "stack": [ + "0x70363622", + "0x2a", + "0x40" + ] + }, + { + "gas": 249893034399, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 206, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0x2a", + "0x80" + ] + }, + { + "gas": 249893029815, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 209, + "op": "SWAP2", + "stack": [ + "0x70363622", + "0x2a", + "0x80", + "0xd7" + ] + }, + { + "gas": 249893025231, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 210, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0xd7", + "0x80", + "0x2a" + ] + }, + { + "gas": 249893020647, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 211, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80" + ] + }, + { + "gas": 249893016063, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 214, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0x270" + ] + }, + { + "gas": 249893003839, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 624, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80" + ] + }, + { + "gas": 249893002311, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 625, + "op": "PUSH0", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80" + ] + }, + { + "gas": 249892999255, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 626, + "op": "PUSH1", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0x0" + ] + }, + { + "gas": 249892994671, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 628, + "op": "DUP3", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0x0", + "0x20" + ] + }, + { + "gas": 249892990087, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 629, + "op": "ADD", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0x0", + "0x20", + "0x80" + ] + }, + { + "gas": 249892985503, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 630, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0x0", + "0xa0" + ] + }, + { + "gas": 249892980919, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 631, + "op": "POP", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x0" + ] + }, + { + "gas": 249892977863, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 632, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0" + ] + }, + { + "gas": 249892973279, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 635, + "op": "PUSH0", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283" + ] + }, + { + "gas": 249892970223, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 636, + "op": "DUP4", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x0" + ] + }, + { + "gas": 249892965639, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 637, + "op": "ADD", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x0", + "0x80" + ] + }, + { + "gas": 249892961055, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 638, + "op": "DUP5", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80" + ] + }, + { + "gas": 249892956471, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 639, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a" + ] + }, + { + "gas": 249892951887, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 642, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x261" + ] + }, + { + "gas": 249892939663, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 609, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a" + ] + }, + { + "gas": 249892938135, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 610, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a" + ] + }, + { + "gas": 249892933551, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 613, + "op": "DUP2", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a" + ] + }, + { + "gas": 249892928967, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 614, + "op": "PUSH2", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a", + "0x2a" + ] + }, + { + "gas": 249892924383, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 617, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a", + "0x2a", + "0x1f9" + ] + }, + { + "gas": 249892912159, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 505, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a", + "0x2a" + ] + }, + { + "gas": 249892910631, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 506, + "op": "PUSH0", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a", + "0x2a" + ] + }, + { + "gas": 249892907575, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 507, + "op": "PUSH8", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a", + "0x2a", + "0x0" + ] + }, + { + "gas": 249892902991, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 516, + "op": "DUP3", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a", + "0x2a", + "0x0", + "0xffffffffffffffff" + ] + }, + { + "gas": 249892898407, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 517, + "op": "AND", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a", + "0x2a", + "0x0", + "0xffffffffffffffff", + "0x2a" + ] + }, + { + "gas": 249892893823, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 518, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a", + "0x2a", + "0x0", + "0x2a" + ] + }, + { + "gas": 249892889239, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 519, + "op": "POP", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a", + "0x2a", + "0x2a", + "0x0" + ] + }, + { + "gas": 249892886183, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 520, + "op": "SWAP2", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x26a", + "0x2a", + "0x2a" + ] + }, + { + "gas": 249892881599, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 521, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x2a", + "0x2a", + "0x26a" + ] + }, + { + "gas": 249892877015, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 522, + "op": "POP", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x2a", + "0x26a", + "0x2a" + ] + }, + { + "gas": 249892873959, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 523, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x2a", + "0x26a" + ] + }, + { + "gas": 249892861735, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 618, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x2a" + ] + }, + { + "gas": 249892860207, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 619, + "op": "DUP3", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x2a" + ] + }, + { + "gas": 249892855623, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 620, + "op": "MSTORE", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a", + "0x2a", + "0x80" + ] + }, + { + "gas": 249892851039, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 621, + "op": "POP", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80", + "0x2a" + ] + }, + { + "gas": 249892847983, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 622, + "op": "POP", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283", + "0x80" + ] + }, + { + "gas": 249892844927, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 623, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0", + "0x283" + ] + }, + { + "gas": 249892832703, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 643, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0" + ] + }, + { + "gas": 249892831175, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 644, + "op": "SWAP3", + "stack": [ + "0x70363622", + "0xd7", + "0x2a", + "0x80", + "0xa0" + ] + }, + { + "gas": 249892826591, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 645, + "op": "SWAP2", + "stack": [ + "0x70363622", + "0xa0", + "0x2a", + "0x80", + "0xd7" + ] + }, + { + "gas": 249892822007, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 646, + "op": "POP", + "stack": [ + "0x70363622", + "0xa0", + "0xd7", + "0x80", + "0x2a" + ] + }, + { + "gas": 249892818951, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 2, + "pc": 647, + "op": "POP", + "stack": [ + "0x70363622", + "0xa0", + "0xd7", + "0x80" + ] + }, + { + "gas": 249892815895, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 2, + "pc": 648, + "op": "JUMP", + "stack": [ + "0x70363622", + "0xa0", + "0xd7" + ] + }, + { + "gas": 249892803671, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 2, + "pc": 215, + "op": "JUMPDEST", + "stack": [ + "0x70363622", + "0xa0" + ] + }, + { + "gas": 249892802143, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 216, + "op": "PUSH1", + "stack": [ + "0x70363622", + "0xa0" + ] + }, + { + "gas": 249892797559, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 218, + "op": "MLOAD", + "stack": [ + "0x70363622", + "0xa0", + "0x40" + ] + }, + { + "gas": 249892792975, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 219, + "op": "DUP1", + "stack": [ + "0x70363622", + "0xa0", + "0x80" + ] + }, + { + "gas": 249892788391, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 220, + "op": "SWAP2", + "stack": [ + "0x70363622", + "0xa0", + "0x80", + "0x80" + ] + }, + { + "gas": 249892783807, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 221, + "op": "SUB", + "stack": [ + "0x70363622", + "0x80", + "0x80", + "0xa0" + ] + }, + { + "gas": 249892779223, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 2, + "pc": 222, + "op": "SWAP1", + "stack": [ + "0x70363622", + "0x80", + "0x20" + ] + }, + { + "gas": 249892774639, + "gasCost": 0, + "weightCost": { + "ref_time": 0, + "proof_size": 0 + }, + "depth": 2, + "pc": 223, + "op": "RETURN", + "stack": [ + "0x70363622", + "0x20", + "0x80" + ] + }, + { + "gas": 249892725739, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 756, + "op": "SWAP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0xffffffffffffffff", + "0x104", + "0x1" + ] + }, + { + "gas": 249892721155, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 757, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xffffffffffffffff", + "0x104", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 249892718099, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 758, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xffffffffffffffff", + "0x104" + ] + }, + { + "gas": 249892715043, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 759, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xffffffffffffffff" + ] + }, + { + "gas": 249892711987, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 760, + "op": "RETURNDATASIZE", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1" + ] + }, + { + "gas": 249892708931, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 761, + "op": "DUP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0x20" + ] + }, + { + "gas": 249892704347, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 762, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20" + ] + }, + { + "gas": 249892701291, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 763, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20", + "0x0" + ] + }, + { + "gas": 249892696707, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 764, + "op": "EQ", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20", + "0x0", + "0x20" + ] + }, + { + "gas": 249892692123, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 765, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20", + "0x0" + ] + }, + { + "gas": 249892687539, + "gasCost": 15280, + "weightCost": { + "ref_time": 152800, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 768, + "op": "JUMPI", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20", + "0x0", + "0x321" + ] + }, + { + "gas": 249892672259, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 769, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20" + ] + }, + { + "gas": 249892667675, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 771, + "op": "MLOAD", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20", + "0x40" + ] + }, + { + "gas": 249892663091, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 772, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0x20", + "0x20", + "0xe0" + ] + }, + { + "gas": 249892658507, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 773, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x20" + ] + }, + { + "gas": 249892655451, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 774, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20" + ] + }, + { + "gas": 249892650867, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 776, + "op": "NOT", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x1f" + ] + }, + { + "gas": 249892646283, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 777, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "gas": 249892641699, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 779, + "op": "RETURNDATASIZE", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x3f" + ] + }, + { + "gas": 249892638643, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 780, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x3f", + "0x20" + ] + }, + { + "gas": 249892634059, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 781, + "op": "AND", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x5f" + ] + }, + { + "gas": 249892629475, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 782, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x40" + ] + }, + { + "gas": 249892624891, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 783, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x40", + "0xe0" + ] + }, + { + "gas": 249892620307, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 784, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x120" + ] + }, + { + "gas": 249892615723, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 786, + "op": "MSTORE", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x120", + "0x40" + ] + }, + { + "gas": 249892611139, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 787, + "op": "RETURNDATASIZE", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20" + ] + }, + { + "gas": 249892608083, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 788, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x20" + ] + }, + { + "gas": 249892603499, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 789, + "op": "MSTORE", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x20", + "0xe0" + ] + }, + { + "gas": 249892598915, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 790, + "op": "RETURNDATASIZE", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20" + ] + }, + { + "gas": 249892595859, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 791, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x20" + ] + }, + { + "gas": 249892592803, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 792, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x20", + "0x0" + ] + }, + { + "gas": 249892588219, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 794, + "op": "DUP5", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x20", + "0x0", + "0x20" + ] + }, + { + "gas": 249892583635, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 795, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x20", + "0x0", + "0x20", + "0xe0" + ] + }, + { + "gas": 249892579051, + "gasCost": 49550, + "weightCost": { + "ref_time": 495496, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 796, + "op": "RETURNDATACOPY", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x20", + "0x0", + "0x100" + ] + }, + { + "gas": 249892529501, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 797, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20" + ] + }, + { + "gas": 249892524917, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 800, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20", + "0x326" + ] + }, + { + "gas": 249892512693, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 806, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20" + ] + }, + { + "gas": 249892511165, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 807, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0x20" + ] + }, + { + "gas": 249892508109, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 808, + "op": "DUP1", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0" + ] + }, + { + "gas": 249892503525, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 809, + "op": "SWAP3", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0x60", + "0x1", + "0xe0", + "0xe0" + ] + }, + { + "gas": 249892498941, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 810, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0xe0", + "0x1", + "0xe0", + "0x60" + ] + }, + { + "gas": 249892495885, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 811, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0xe0", + "0x1", + "0xe0" + ] + }, + { + "gas": 249892491301, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 812, + "op": "SWAP4", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x0", + "0xe0", + "0x1", + "0xe0", + "0x1" + ] + }, + { + "gas": 249892486717, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 813, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x1", + "0xe0", + "0x1", + "0xe0", + "0x0" + ] + }, + { + "gas": 249892483661, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 814, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x1", + "0xe0", + "0x1", + "0xe0" + ] + }, + { + "gas": 249892480605, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 815, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x1", + "0xe0", + "0x1" + ] + }, + { + "gas": 249892477549, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 816, + "op": "SWAP4", + "stack": [ + "0x66b54f3", + "0xe0", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e", + "0x80", + "0xffffffffffffffff", + "0x1", + "0xe0" + ] + }, + { + "gas": 249892472965, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 817, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xe0", + "0xe0", + "0x80", + "0xffffffffffffffff", + "0x1", + "0x30e5e1bcec39a34bddda04e59dacad913ac7e90e" + ] + }, + { + "gas": 249892469909, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 818, + "op": "SWAP4", + "stack": [ + "0x66b54f3", + "0xe0", + "0xe0", + "0x80", + "0xffffffffffffffff", + "0x1" + ] + }, + { + "gas": 249892465325, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 819, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0x1", + "0xe0", + "0x80", + "0xffffffffffffffff", + "0xe0" + ] + }, + { + "gas": 249892460741, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 820, + "op": "POP", + "stack": [ + "0x66b54f3", + "0x1", + "0xe0", + "0xe0", + "0xffffffffffffffff", + "0x80" + ] + }, + { + "gas": 249892457685, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 821, + "op": "POP", + "stack": [ + "0x66b54f3", + "0x1", + "0xe0", + "0xe0", + "0xffffffffffffffff" + ] + }, + { + "gas": 249892454629, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 822, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0x1", + "0xe0", + "0xe0" + ] + }, + { + "gas": 249892442405, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 224, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0x1", + "0xe0" + ] + }, + { + "gas": 249892440877, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 225, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0x1", + "0xe0" + ] + }, + { + "gas": 249892436293, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 227, + "op": "MLOAD", + "stack": [ + "0x66b54f3", + "0x1", + "0xe0", + "0x40" + ] + }, + { + "gas": 249892431709, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 228, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0x1", + "0xe0", + "0x120" + ] + }, + { + "gas": 249892427125, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 231, + "op": "SWAP3", + "stack": [ + "0x66b54f3", + "0x1", + "0xe0", + "0x120", + "0xee" + ] + }, + { + "gas": 249892422541, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 232, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xee", + "0xe0", + "0x120", + "0x1" + ] + }, + { + "gas": 249892417957, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 233, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0x120", + "0xe0" + ] + }, + { + "gas": 249892413373, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 234, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120" + ] + }, + { + "gas": 249892408789, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 237, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x9c0" + ] + }, + { + "gas": 249892396565, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2496, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120" + ] + }, + { + "gas": 249892395037, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2497, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120" + ] + }, + { + "gas": 249892391981, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2498, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x0" + ] + }, + { + "gas": 249892387397, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2500, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x0", + "0x40" + ] + }, + { + "gas": 249892382813, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2501, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x0", + "0x40", + "0x120" + ] + }, + { + "gas": 249892378229, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2502, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x0", + "0x160" + ] + }, + { + "gas": 249892373645, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2503, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x0" + ] + }, + { + "gas": 249892370589, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2504, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160" + ] + }, + { + "gas": 249892366005, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2507, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3" + ] + }, + { + "gas": 249892362949, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2508, + "op": "DUP4", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x0" + ] + }, + { + "gas": 249892358365, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2509, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x0", + "0x120" + ] + }, + { + "gas": 249892353781, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2510, + "op": "DUP6", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120" + ] + }, + { + "gas": 249892349197, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2511, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1" + ] + }, + { + "gas": 249892344613, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2514, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x951" + ] + }, + { + "gas": 249892332389, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2385, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1" + ] + }, + { + "gas": 249892330861, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2386, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1" + ] + }, + { + "gas": 249892326277, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2389, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a" + ] + }, + { + "gas": 249892321693, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2390, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a", + "0x1" + ] + }, + { + "gas": 249892317109, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2393, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a", + "0x1", + "0x946" + ] + }, + { + "gas": 249892304885, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2374, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a", + "0x1" + ] + }, + { + "gas": 249892303357, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2375, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a", + "0x1" + ] + }, + { + "gas": 249892300301, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2376, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a", + "0x1", + "0x0" + ] + }, + { + "gas": 249892295717, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2377, + "op": "ISZERO", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a", + "0x1", + "0x0", + "0x1" + ] + }, + { + "gas": 249892291133, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2378, + "op": "ISZERO", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a", + "0x1", + "0x0", + "0x0" + ] + }, + { + "gas": 249892286549, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2379, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a", + "0x1", + "0x0", + "0x1" + ] + }, + { + "gas": 249892281965, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2380, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a", + "0x1", + "0x1", + "0x0" + ] + }, + { + "gas": 249892278909, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2381, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x95a", + "0x1", + "0x1" + ] + }, + { + "gas": 249892274325, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2382, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x1", + "0x1", + "0x95a" + ] + }, + { + "gas": 249892269741, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2383, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x1", + "0x95a", + "0x1" + ] + }, + { + "gas": 249892266685, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2384, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x1", + "0x95a" + ] + }, + { + "gas": 249892254461, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2394, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x1" + ] + }, + { + "gas": 249892252933, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2395, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x1" + ] + }, + { + "gas": 249892248349, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2396, + "op": "MSTORE", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1", + "0x1", + "0x120" + ] + }, + { + "gas": 249892243765, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2397, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120", + "0x1" + ] + }, + { + "gas": 249892240709, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2398, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3", + "0x120" + ] + }, + { + "gas": 249892237653, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2399, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9d3" + ] + }, + { + "gas": 249892225429, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2515, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160" + ] + }, + { + "gas": 249892223901, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2516, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160" + ] + }, + { + "gas": 249892219317, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2517, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x120" + ] + }, + { + "gas": 249892214733, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2518, + "op": "SUB", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x120", + "0x160" + ] + }, + { + "gas": 249892210149, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2519, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x40" + ] + }, + { + "gas": 249892205565, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2521, + "op": "DUP4", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x40", + "0x20" + ] + }, + { + "gas": 249892200981, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2522, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x40", + "0x20", + "0x120" + ] + }, + { + "gas": 249892196397, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2523, + "op": "MSTORE", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x40", + "0x140" + ] + }, + { + "gas": 249892191813, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2524, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160" + ] + }, + { + "gas": 249892187229, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2527, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5" + ] + }, + { + "gas": 249892182645, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2528, + "op": "DUP5", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160" + ] + }, + { + "gas": 249892178061, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2529, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0" + ] + }, + { + "gas": 249892173477, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2532, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x988" + ] + }, + { + "gas": 249892161253, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2440, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0" + ] + }, + { + "gas": 249892159725, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2441, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0" + ] + }, + { + "gas": 249892156669, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2442, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0" + ] + }, + { + "gas": 249892152085, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2445, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x992" + ] + }, + { + "gas": 249892147501, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2446, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x992", + "0xe0" + ] + }, + { + "gas": 249892142917, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2449, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x992", + "0xe0", + "0x960" + ] + }, + { + "gas": 249892130693, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2400, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x992", + "0xe0" + ] + }, + { + "gas": 249892129165, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2401, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x992", + "0xe0" + ] + }, + { + "gas": 249892126109, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2402, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x992", + "0xe0", + "0x0" + ] + }, + { + "gas": 249892121525, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2403, + "op": "MLOAD", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x992", + "0xe0", + "0x0", + "0xe0" + ] + }, + { + "gas": 249892116941, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2404, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x992", + "0xe0", + "0x0", + "0x20" + ] + }, + { + "gas": 249892112357, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2405, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x992", + "0xe0", + "0x20", + "0x0" + ] + }, + { + "gas": 249892109301, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2406, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x992", + "0xe0", + "0x20" + ] + }, + { + "gas": 249892104717, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2407, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0xe0", + "0x992" + ] + }, + { + "gas": 249892100133, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2408, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x992", + "0xe0" + ] + }, + { + "gas": 249892097077, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2409, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x992" + ] + }, + { + "gas": 249892084853, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2450, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20" + ] + }, + { + "gas": 249892083325, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2451, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20" + ] + }, + { + "gas": 249892078741, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2454, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c" + ] + }, + { + "gas": 249892074157, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2455, + "op": "DUP6", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20" + ] + }, + { + "gas": 249892069573, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2456, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160" + ] + }, + { + "gas": 249892064989, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2459, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160", + "0x96a" + ] + }, + { + "gas": 249892052765, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2410, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160" + ] + }, + { + "gas": 249892051237, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2411, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160" + ] + }, + { + "gas": 249892048181, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2412, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160", + "0x0" + ] + }, + { + "gas": 249892043597, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2413, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160", + "0x0", + "0x20" + ] + }, + { + "gas": 249892039013, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2414, + "op": "MSTORE", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160", + "0x0", + "0x20", + "0x160" + ] + }, + { + "gas": 249892034429, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2415, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160", + "0x0" + ] + }, + { + "gas": 249892029845, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2417, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160", + "0x0", + "0x20" + ] + }, + { + "gas": 249892025261, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2418, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160", + "0x0", + "0x20", + "0x160" + ] + }, + { + "gas": 249892020677, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2419, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160", + "0x0", + "0x180" + ] + }, + { + "gas": 249892016093, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2420, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160", + "0x180", + "0x0" + ] + }, + { + "gas": 249892013037, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2421, + "op": "SWAP3", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x99c", + "0x20", + "0x160", + "0x180" + ] + }, + { + "gas": 249892008453, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2422, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x180", + "0x20", + "0x160", + "0x99c" + ] + }, + { + "gas": 249892003869, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2423, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x180", + "0x99c", + "0x160", + "0x20" + ] + }, + { + "gas": 249892000813, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2424, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x180", + "0x99c", + "0x160" + ] + }, + { + "gas": 249891997757, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2425, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x180", + "0x99c" + ] + }, + { + "gas": 249891985533, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2460, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x180" + ] + }, + { + "gas": 249891984005, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2461, + "op": "SWAP4", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x160", + "0xe0", + "0x0", + "0x20", + "0x180" + ] + }, + { + "gas": 249891979421, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2462, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x160" + ] + }, + { + "gas": 249891976365, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2463, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20" + ] + }, + { + "gas": 249891971781, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2466, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac" + ] + }, + { + "gas": 249891967197, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2467, + "op": "DUP6", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20" + ] + }, + { + "gas": 249891962613, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2468, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180" + ] + }, + { + "gas": 249891958029, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2470, + "op": "DUP7", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x20" + ] + }, + { + "gas": 249891953445, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2471, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x20", + "0xe0" + ] + }, + { + "gas": 249891948861, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2472, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100" + ] + }, + { + "gas": 249891944277, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2475, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100", + "0x97a" + ] + }, + { + "gas": 249891932053, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2426, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100" + ] + }, + { + "gas": 249891930525, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2427, + "op": "DUP3", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100" + ] + }, + { + "gas": 249891925941, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2428, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100", + "0x20" + ] + }, + { + "gas": 249891921357, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2429, + "op": "DUP4", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100", + "0x20", + "0x100" + ] + }, + { + "gas": 249891916773, + "gasCost": 9168, + "weightCost": { + "ref_time": 91680, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2430, + "op": "MCOPY", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100", + "0x20", + "0x100", + "0x180" + ] + }, + { + "gas": 249891907605, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2431, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100" + ] + }, + { + "gas": 249891904549, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2432, + "op": "DUP4", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100", + "0x0" + ] + }, + { + "gas": 249891899965, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2433, + "op": "DUP4", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100", + "0x0", + "0x20" + ] + }, + { + "gas": 249891895381, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2434, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100", + "0x0", + "0x20", + "0x180" + ] + }, + { + "gas": 249891890797, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2435, + "op": "MSTORE", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100", + "0x0", + "0x1a0" + ] + }, + { + "gas": 249891886213, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2436, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180", + "0x100" + ] + }, + { + "gas": 249891883157, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2437, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20", + "0x180" + ] + }, + { + "gas": 249891880101, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2438, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac", + "0x20" + ] + }, + { + "gas": 249891877045, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2439, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9ac" + ] + }, + { + "gas": 249891864821, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2476, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20" + ] + }, + { + "gas": 249891863293, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2477, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20" + ] + }, + { + "gas": 249891858709, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2480, + "op": "DUP2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5" + ] + }, + { + "gas": 249891854125, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2481, + "op": "PUSH2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20" + ] + }, + { + "gas": 249891849541, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2484, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20", + "0x792" + ] + }, + { + "gas": 249891837317, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1938, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20" + ] + }, + { + "gas": 249891835789, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1939, + "op": "PUSH0", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20" + ] + }, + { + "gas": 249891832733, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1940, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20", + "0x0" + ] + }, + { + "gas": 249891828149, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1942, + "op": "NOT", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20", + "0x0", + "0x1f" + ] + }, + { + "gas": 249891823565, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1943, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ] + }, + { + "gas": 249891818981, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1945, + "op": "DUP4", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f" + ] + }, + { + "gas": 249891814397, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1946, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x1f", + "0x20" + ] + }, + { + "gas": 249891809813, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1947, + "op": "AND", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20", + "0x0", + "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0x3f" + ] + }, + { + "gas": 249891805229, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1948, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20", + "0x0", + "0x20" + ] + }, + { + "gas": 249891800645, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1949, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20", + "0x20", + "0x0" + ] + }, + { + "gas": 249891797589, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1950, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x9b5", + "0x20", + "0x20" + ] + }, + { + "gas": 249891793005, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1951, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x20", + "0x20", + "0x9b5" + ] + }, + { + "gas": 249891788421, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1952, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x20", + "0x9b5", + "0x20" + ] + }, + { + "gas": 249891785365, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 1953, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x20", + "0x9b5" + ] + }, + { + "gas": 249891773141, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2485, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x20" + ] + }, + { + "gas": 249891771613, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2486, + "op": "DUP5", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x20" + ] + }, + { + "gas": 249891767029, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2487, + "op": "ADD", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x20", + "0x180" + ] + }, + { + "gas": 249891762445, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2488, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x0", + "0x20", + "0x1a0" + ] + }, + { + "gas": 249891757861, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2489, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x1a0", + "0x20", + "0x0" + ] + }, + { + "gas": 249891754805, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2490, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x1a0", + "0x20" + ] + }, + { + "gas": 249891751749, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2491, + "op": "SWAP3", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x9e5", + "0x180", + "0xe0", + "0x1a0" + ] + }, + { + "gas": 249891747165, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2492, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x1a0", + "0x180", + "0xe0", + "0x9e5" + ] + }, + { + "gas": 249891742581, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2493, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x1a0", + "0x9e5", + "0xe0", + "0x180" + ] + }, + { + "gas": 249891739525, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2494, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x1a0", + "0x9e5", + "0xe0" + ] + }, + { + "gas": 249891736469, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2495, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x1a0", + "0x9e5" + ] + }, + { + "gas": 249891724245, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2533, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x1a0" + ] + }, + { + "gas": 249891722717, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2534, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x160", + "0x1a0" + ] + }, + { + "gas": 249891718133, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2535, + "op": "POP", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x1a0", + "0x160" + ] + }, + { + "gas": 249891715077, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2536, + "op": "SWAP4", + "stack": [ + "0x66b54f3", + "0xee", + "0x1", + "0xe0", + "0x120", + "0x1a0" + ] + }, + { + "gas": 249891710493, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2537, + "op": "SWAP3", + "stack": [ + "0x66b54f3", + "0x1a0", + "0x1", + "0xe0", + "0x120", + "0xee" + ] + }, + { + "gas": 249891705909, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2538, + "op": "POP", + "stack": [ + "0x66b54f3", + "0x1a0", + "0xee", + "0xe0", + "0x120", + "0x1" + ] + }, + { + "gas": 249891702853, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2539, + "op": "POP", + "stack": [ + "0x66b54f3", + "0x1a0", + "0xee", + "0xe0", + "0x120" + ] + }, + { + "gas": 249891699797, + "gasCost": 3056, + "weightCost": { + "ref_time": 30560, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2540, + "op": "POP", + "stack": [ + "0x66b54f3", + "0x1a0", + "0xee", + "0xe0" + ] + }, + { + "gas": 249891696741, + "gasCost": 12224, + "weightCost": { + "ref_time": 122240, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 2541, + "op": "JUMP", + "stack": [ + "0x66b54f3", + "0x1a0", + "0xee" + ] + }, + { + "gas": 249891684517, + "gasCost": 1528, + "weightCost": { + "ref_time": 15280, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 238, + "op": "JUMPDEST", + "stack": [ + "0x66b54f3", + "0x1a0" + ] + }, + { + "gas": 249891682989, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 239, + "op": "PUSH1", + "stack": [ + "0x66b54f3", + "0x1a0" + ] + }, + { + "gas": 249891678405, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 241, + "op": "MLOAD", + "stack": [ + "0x66b54f3", + "0x1a0", + "0x40" + ] + }, + { + "gas": 249891673821, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 242, + "op": "DUP1", + "stack": [ + "0x66b54f3", + "0x1a0", + "0x120" + ] + }, + { + "gas": 249891669237, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 243, + "op": "SWAP2", + "stack": [ + "0x66b54f3", + "0x1a0", + "0x120", + "0x120" + ] + }, + { + "gas": 249891664653, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 244, + "op": "SUB", + "stack": [ + "0x66b54f3", + "0x120", + "0x120", + "0x1a0" + ] + }, + { + "gas": 249891660069, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 245, + "op": "SWAP1", + "stack": [ + "0x66b54f3", + "0x120", + "0x80" + ] + }, + { + "gas": 249891655485, + "gasCost": 0, + "weightCost": { + "ref_time": 0, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "pc": 246, + "op": "RETURN", + "stack": [ + "0x66b54f3", + "0x80", + "0x120" + ] + } + ] +} + diff --git a/substrate/frame/revive/src/tests/json_trace/delegatecall_pvm.json b/substrate/frame/revive/src/tests/json_trace/delegatecall_pvm.json new file mode 100644 index 0000000000000..b88576df436c1 --- /dev/null +++ b/substrate/frame/revive/src/tests/json_trace/delegatecall_pvm.json @@ -0,0 +1,277 @@ +{ + "gas": 516522933, + "weightConsumed": { + "ref_time": 0, + "proof_size": 0 + }, + "baseCallWeight": { + "ref_time": 0, + "proof_size": 0 + }, + "failed": false, + "returnValue": "0x000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002a", + "structLogs": [ + { + "gas": 249686684201, + "gasCost": 33000, + "weightCost": { + "ref_time": 330000, + "proof_size": 0 + }, + "depth": 1, + "op": "call_data_size", + "returned": "0xc4" + }, + { + "gas": 249685987644, + "gasCost": 34300, + "weightCost": { + "ref_time": 343000, + "proof_size": 0 + }, + "depth": 1, + "op": "call_data_load", + "args": [ + "0xfffdf960", + "0x0" + ] + }, + { + "gas": 249685841162, + "gasCost": 31900, + "weightCost": { + "ref_time": 319000, + "proof_size": 0 + }, + "depth": 1, + "op": "value_transferred", + "args": [ + "0xfffdffa0" + ] + }, + { + "gas": 249685539545, + "gasCost": 34300, + "weightCost": { + "ref_time": 343000, + "proof_size": 0 + }, + "depth": 1, + "op": "call_data_load", + "args": [ + "0xfffdf840", + "0x4" + ] + }, + { + "gas": 249685284757, + "gasCost": 34300, + "weightCost": { + "ref_time": 343000, + "proof_size": 0 + }, + "depth": 1, + "op": "call_data_load", + "args": [ + "0xfffdf860", + "0x24" + ] + }, + { + "gas": 249684769051, + "gasCost": 34300, + "weightCost": { + "ref_time": 343000, + "proof_size": 0 + }, + "depth": 1, + "op": "call_data_load", + "args": [ + "0xfffdf6c0", + "0x64" + ] + }, + { + "gas": 249681732769, + "gasCost": 50065, + "weightCost": { + "ref_time": 500644, + "proof_size": 0 + }, + "depth": 1, + "op": "call_data_copy", + "args": [ + "0x200e0", + "0x24", + "0x84" + ] + }, + { + "gas": 249680738536, + "gasCost": 34300, + "weightCost": { + "ref_time": 343000, + "proof_size": 0 + }, + "depth": 1, + "op": "call_data_load", + "args": [ + "0xfffdf820", + "0x44" + ] + }, + { + "gas": 249679105308, + "gasCost": 184709797, + "weightCost": { + "ref_time": 152800180, + "proof_size": 8883 + }, + "depth": 1, + "op": "delegate_call_evm", + "args": [ + "0x0", + "0x40040", + "0xffffffffffffffff", + "0x24000200e0", + "0xfffdf86000020040" + ], + "returned": "0x0" + }, + { + "gas": 249497704182, + "gasCost": 33000, + "weightCost": { + "ref_time": 330000, + "proof_size": 0 + }, + "depth": 2, + "op": "call_data_size", + "returned": "0x24" + }, + { + "gas": 249497007625, + "gasCost": 34300, + "weightCost": { + "ref_time": 343000, + "proof_size": 0 + }, + "depth": 2, + "op": "call_data_load", + "args": [ + "0xfffdfce0", + "0x0" + ] + }, + { + "gas": 249496831606, + "gasCost": 31900, + "weightCost": { + "ref_time": 319000, + "proof_size": 0 + }, + "depth": 2, + "op": "value_transferred", + "args": [ + "0xfffdffa0" + ] + }, + { + "gas": 249496613679, + "gasCost": 34300, + "weightCost": { + "ref_time": 343000, + "proof_size": 0 + }, + "depth": 2, + "op": "call_data_load", + "args": [ + "0xfffdfca0", + "0x4" + ] + }, + { + "gas": 249494497998, + "gasCost": 53587, + "weightCost": { + "ref_time": 535865, + "proof_size": 0 + }, + "depth": 2, + "op": "seal_return", + "args": [ + "0x0", + "0x200a0", + "0x20" + ] + }, + { + "gas": 249494327637, + "gasCost": 31900, + "weightCost": { + "ref_time": 319000, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "op": "return_data_size", + "returned": "0x20" + }, + { + "gas": 249494232786, + "gasCost": 31900, + "weightCost": { + "ref_time": 319000, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "op": "return_data_size", + "returned": "0x20" + }, + { + "gas": 249491819201, + "gasCost": 31900, + "weightCost": { + "ref_time": 319000, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "op": "return_data_size", + "returned": "0x20" + }, + { + "gas": 249491527430, + "gasCost": 49550, + "weightCost": { + "ref_time": 495496, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "op": "return_data_copy", + "args": [ + "0x20140", + "0xfffdf780", + "0x0" + ] + }, + { + "gas": 249484532575, + "gasCost": 55507, + "weightCost": { + "ref_time": 555065, + "proof_size": 0 + }, + "depth": 1, + "returnData": "0x000000000000000000000000000000000000000000000000000000000000002a", + "op": "seal_return", + "args": [ + "0x0", + "0x20160", + "0x80" + ] + } + ] +} diff --git a/substrate/frame/revive/src/tests/json_trace/fibonacci_evm.json b/substrate/frame/revive/src/tests/json_trace/fibonacci_evm.json new file mode 100644 index 0000000000000..f230cb717b83a --- /dev/null +++ b/substrate/frame/revive/src/tests/json_trace/fibonacci_evm.json @@ -0,0 +1,83 @@ +{ + "gas": 3237095, + "weightConsumed": { + "ref_time": 0, + "proof_size": 0 + }, + "baseCallWeight": { + "ref_time": 0, + "proof_size": 0 + }, + "failed": false, + "returnValue": "0x0000000000000000000000000000000000000000000000000000000000000002", + "structLogs": [ + { + "gas": 250000997493, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 0, + "op": "PUSH1", + "stack": [] + }, + { + "gas": 250000992909, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 2, + "op": "PUSH1", + "stack": [ + "0x80" + ] + }, + { + "gas": 250000988325, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 4, + "op": "MSTORE", + "stack": [ + "0x80", + "0x40" + ] + }, + { + "gas": 250000983741, + "gasCost": 31900, + "weightCost": { + "ref_time": 319000, + "proof_size": 0 + }, + "depth": 1, + "pc": 5, + "op": "CALLVALUE", + "stack": [] + }, + { + "gas": 250000951841, + "gasCost": 4584, + "weightCost": { + "ref_time": 45840, + "proof_size": 0 + }, + "depth": 1, + "pc": 6, + "op": "DUP1", + "stack": [ + "0x0" + ] + } + ] +} + diff --git a/substrate/frame/revive/src/tests/json_trace/fibonacci_pvm.json b/substrate/frame/revive/src/tests/json_trace/fibonacci_pvm.json new file mode 100644 index 0000000000000..4f2fa4cf0b52f --- /dev/null +++ b/substrate/frame/revive/src/tests/json_trace/fibonacci_pvm.json @@ -0,0 +1,83 @@ +{ + "gas": 43429049, + "weightConsumed": { + "ref_time": 0, + "proof_size": 0 + }, + "baseCallWeight": { + "ref_time": 0, + "proof_size": 0 + }, + "failed": false, + "returnValue": "0x0000000000000000000000000000000000000000000000000000000000000002", + "structLogs": [ + { + "gas": 249961111334, + "gasCost": 33000, + "weightCost": { + "ref_time": 330000, + "proof_size": 0 + }, + "depth": 1, + "op": "call_data_size", + "returned": "0x24" + }, + { + "gas": 249960429545, + "gasCost": 34300, + "weightCost": { + "ref_time": 343000, + "proof_size": 0 + }, + "depth": 1, + "op": "call_data_load", + "args": [ + "0xfffdfec0", + "0x0" + ] + }, + { + "gas": 249960317525, + "gasCost": 31900, + "weightCost": { + "ref_time": 319000, + "proof_size": 0 + }, + "depth": 1, + "op": "value_transferred", + "args": [ + "0xfffdff80" + ] + }, + { + "gas": 249960198059, + "gasCost": 34300, + "weightCost": { + "ref_time": 343000, + "proof_size": 0 + }, + "depth": 1, + "op": "call_data_load", + "args": [ + "0xfffdffa0", + "0x4" + ] + }, + { + "gas": 249957624538, + "gasCost": 53586, + "weightCost": { + "ref_time": 535865, + "proof_size": 0 + }, + "depth": 1, + "op": "seal_return", + "args": [ + "0x0", + "0x20090", + "0x20" + ] + } + ] +} + diff --git a/substrate/frame/revive/src/tests/sol.rs b/substrate/frame/revive/src/tests/sol.rs index 5ec38fd4da5cc..14682b2ae04c0 100644 --- a/substrate/frame/revive/src/tests/sol.rs +++ b/substrate/frame/revive/src/tests/sol.rs @@ -597,409 +597,224 @@ fn eth_substrate_call_tracks_weight_correctly() { }); } -#[test] -fn execution_tracing_works_for_evm() { - use crate::{ - evm::{ - ExecutionStep, ExecutionStepKind, ExecutionTrace, ExecutionTracer, - ExecutionTracerConfig, - }, - tracing::trace, - }; - use sp_core::U256; - let (code, _) = compile_module_with_type("Fibonacci", FixtureType::Solc).unwrap(); - ExtBuilder::default().existential_deposit(200).build().execute_with(|| { - let _ = ::Currency::set_balance(&ALICE, 100_000_000); - let Contract { addr, .. } = - builder::bare_instantiate(Code::Upload(code)).build_and_unwrap_contract(); - - let config = ExecutionTracerConfig { - enable_memory: false, - disable_stack: false, - disable_storage: true, - enable_return_data: true, - disable_syscall_details: true, - limit: Some(5), - memory_word_limit: 16, - }; - - let mut tracer = ExecutionTracer::new(config); - let _result = trace(&mut tracer, || { - builder::bare_call(addr) - .data(Fibonacci::FibonacciCalls::fib(Fibonacci::fibCall { n: 3u64 }).abi_encode()) - .build_and_unwrap_result() - }); - - let mut actual_trace = tracer.collect_trace(); - actual_trace.struct_logs.iter_mut().for_each(|step| { - step.gas = Default::default(); - step.gas_cost = Default::default(); - step.weight_cost = Default::default(); - }); - - let expected_trace = ExecutionTrace { - gas: actual_trace.gas, - base_call_weight: Default::default(), - weight_consumed: Default::default(), - failed: false, - return_value: crate::evm::Bytes(U256::from(2).to_big_endian().to_vec()), - struct_logs: vec![ - ExecutionStep { - depth: 1, - return_data: crate::evm::Bytes::default(), - gas: Default::default(), - gas_cost: Default::default(), - weight_cost: Default::default(), - error: None, - kind: ExecutionStepKind::EVMOpcode { - pc: 0, - op: PUSH1, - stack: vec![], - memory: vec![], - storage: None, - }, - }, - ExecutionStep { - depth: 1, - return_data: crate::evm::Bytes::default(), - error: None, - gas: Default::default(), - gas_cost: Default::default(), - weight_cost: Default::default(), - kind: ExecutionStepKind::EVMOpcode { - pc: 2, - op: PUSH1, - stack: vec![crate::evm::Bytes(U256::from(0x80).to_big_endian().to_vec())], - memory: vec![], - storage: None, - }, - }, - ExecutionStep { - depth: 1, - return_data: crate::evm::Bytes::default(), - error: None, - gas: Default::default(), - gas_cost: Default::default(), - weight_cost: Default::default(), - kind: ExecutionStepKind::EVMOpcode { - pc: 4, - op: MSTORE, - stack: vec![ - crate::evm::Bytes(U256::from(0x80).to_big_endian().to_vec()), - crate::evm::Bytes(U256::from(0x40).to_big_endian().to_vec()), - ], - memory: vec![], - storage: None, - }, - }, - ExecutionStep { - depth: 1, - return_data: crate::evm::Bytes::default(), - error: None, - gas: Default::default(), - gas_cost: Default::default(), - weight_cost: Default::default(), - kind: ExecutionStepKind::EVMOpcode { - pc: 5, - op: CALLVALUE, - stack: vec![], - memory: vec![], - storage: None, - }, - }, - ExecutionStep { - depth: 1, - return_data: crate::evm::Bytes::default(), - error: None, - gas: Default::default(), - gas_cost: Default::default(), - weight_cost: Default::default(), - kind: ExecutionStepKind::EVMOpcode { - pc: 6, - op: DUP1, - stack: vec![crate::evm::Bytes(U256::from(0).to_big_endian().to_vec())], - memory: vec![], - storage: None, - }, - }, - ], - }; - - assert_eq!(actual_trace, expected_trace); - }); -} - -/// Test that execution tracing correctly tracks gas costs for nested calls. +/// Tests execution tracing for both EVM and PVM. /// -/// For EVM: gas - gas_cost == return_step.gas (exact, every opcode is traced) -/// For PVM: gas - gas_cost >= return_step.gas (inequality, PVM instructions between syscalls -/// consume additional gas that isn't individually traced) -#[test_case(FixtureType::Solc; "evm")] -#[test_case(FixtureType::Resolc; "pvm")] -fn execution_tracing_nested_calls_gas(fixture_type: FixtureType) { +/// Each test case runs for both Solc (EVM) and Resolc (PVM) with separate expected traces. +/// Expected traces are stored in `src/tests/json_trace/` directory. +/// +/// Gas consistency is verified for consecutive steps: +/// - For EVM: gas - gas_cost == next_step.gas (exact, every opcode is traced) +/// - For PVM: gas - gas_cost >= next_step.gas (inequality, PVM instructions between syscalls +/// consume additional gas that isn't individually traced) +#[test] +fn execution_tracing_works() { use crate::{ - evm::{ExecutionStepKind, ExecutionTrace, ExecutionTracer, ExecutionTracerConfig}, + evm::{Bytes, ExecutionStepKind, ExecutionTrace, ExecutionTracer, ExecutionTracerConfig}, tracing::trace, - vm::pvm::env::lookup_syscall_index, }; use pallet_revive_fixtures::{Callee, Caller}; - /// Identifier for a call operation, either an EVM opcode or a PVM syscall index. - #[derive(Clone, Copy, Debug)] - enum CallOp { - Evm(u8), - Pvm(u8), + struct TestCase { + name: &'static str, + setup: Box ExecutionTrace>, + expected_evm_trace: &'static str, + expected_pvm_trace: &'static str, } - /// Verifies gas tracking for a call operation (CALL/DELEGATECALL opcode or syscall): - /// 1. The operation has non-zero gas_cost - /// 2. For EVM: gas - gas_cost == return_step.gas - /// 3. For PVM: gas - gas_cost >= return_step.gas - fn verify_call_gas(trace: &ExecutionTrace, call_op: CallOp, op_name: &str) { - let steps = &trace.struct_logs; - - for (i, step) in steps.iter().enumerate() { - let matches = match (&step.kind, call_op) { - (ExecutionStepKind::EVMOpcode { op, .. }, CallOp::Evm(expected)) => *op == expected, - (ExecutionStepKind::PVMSyscall { op, .. }, CallOp::Pvm(expected)) => *op == expected, - _ => false, - }; + let test_cases: Vec = vec![ + TestCase { + name: "Fibonacci", + setup: Box::new(|fixture_type| { + let (code, _) = compile_module_with_type("Fibonacci", fixture_type).unwrap(); + let Contract { addr, .. } = + builder::bare_instantiate(Code::Upload(code)).build_and_unwrap_contract(); + + let config = ExecutionTracerConfig { + enable_return_data: true, + limit: Some(5), + ..Default::default() + }; + let mut tracer = ExecutionTracer::new(config); + trace(&mut tracer, || { + builder::bare_call(addr) + .data(Fibonacci::fibCall { n: 3 }.abi_encode()) + .build_and_unwrap_result() + }); + tracer.collect_trace() + }), + expected_evm_trace: include_str!("json_trace/fibonacci_evm.json"), + expected_pvm_trace: include_str!("json_trace/fibonacci_pvm.json"), + }, + TestCase { + name: "CALL", + setup: Box::new(|fixture_type| { + let (callee_code, _) = compile_module_with_type("Callee", fixture_type).unwrap(); + let Contract { addr: callee, .. } = + builder::bare_instantiate(Code::Upload(callee_code)) + .build_and_unwrap_contract(); + + let (caller_code, _) = compile_module_with_type("Caller", fixture_type).unwrap(); + let Contract { addr: caller, .. } = + builder::bare_instantiate(Code::Upload(caller_code)) + .build_and_unwrap_contract(); + + let config = + ExecutionTracerConfig { enable_return_data: true, ..Default::default() }; + let mut tracer = ExecutionTracer::new(config); + trace(&mut tracer, || { + builder::bare_call(caller) + .data( + Caller::normalCall { + _callee: callee.0.into(), + _value: 0, + _data: Callee::echoCall { _data: 42u64 }.abi_encode().into(), + _gas: u64::MAX, + } + .abi_encode(), + ) + .build_and_unwrap_result() + }); + tracer.collect_trace() + }), + expected_evm_trace: include_str!("json_trace/call_evm.json"), + expected_pvm_trace: include_str!("json_trace/call_pvm.json"), + }, + TestCase { + name: "DELEGATECALL", + setup: Box::new(|fixture_type| { + let (callee_code, _) = compile_module_with_type("Callee", fixture_type).unwrap(); + let Contract { addr: callee, .. } = + builder::bare_instantiate(Code::Upload(callee_code)) + .build_and_unwrap_contract(); + + let (caller_code, _) = compile_module_with_type("Caller", fixture_type).unwrap(); + let Contract { addr: caller, .. } = + builder::bare_instantiate(Code::Upload(caller_code)) + .build_and_unwrap_contract(); + + let config = + ExecutionTracerConfig { enable_return_data: true, ..Default::default() }; + let mut tracer = ExecutionTracer::new(config); + trace(&mut tracer, || { + builder::bare_call(caller) + .data( + Caller::delegateCall { + _callee: callee.0.into(), + _data: Callee::echoCall { _data: 42u64 }.abi_encode().into(), + _gas: u64::MAX, + } + .abi_encode(), + ) + .build_and_unwrap_result() + }); + tracer.collect_trace() + }), + expected_evm_trace: include_str!("json_trace/delegatecall_evm.json"), + expected_pvm_trace: include_str!("json_trace/delegatecall_pvm.json"), + }, + ]; - if matches && step.depth == 1 { - assert!(step.gas_cost > 0, "{} should have non-zero gas_cost", op_name); + /// Normalizes trace by zeroing out all dynamic values for stable comparisons. + fn normalize_trace(trace: &ExecutionTrace) -> ExecutionTrace { + use frame_support::weights::Weight; - let return_step = steps[i + 1..] - .iter() - .find(|s| s.depth == 1) - .expect("Should have a step after returning from nested call"); + let mut normalized = trace.clone(); + normalized.gas = 0; + normalized.weight_consumed = Weight::zero(); + normalized.base_call_weight = Weight::zero(); - let expected_gas = step.gas.saturating_sub(step.gas_cost); + for step in &mut normalized.struct_logs { + step.gas = 0; + step.gas_cost = 0; + step.weight_cost = Weight::zero(); - match call_op { - CallOp::Evm(_) => { - // EVM: exact equality (every opcode is traced) - assert_eq!( - expected_gas, return_step.gas, - "{}: gas - gas_cost should equal return step gas", - op_name - ); - }, - CallOp::Pvm(_) => { - // PVM: inequality (instructions between syscalls consume gas) - assert!( - return_step.gas <= expected_gas, - "{}: return gas ({}) should be <= gas - gas_cost ({})", - op_name, - return_step.gas, - expected_gas - ); + match &mut step.kind { + ExecutionStepKind::EVMOpcode { stack, .. } => + for val in stack.iter_mut() { + *val = Bytes::from(vec![0u8]); }, - } - return; + ExecutionStepKind::PVMSyscall { args, returned, .. } => { + for val in args.iter_mut() { + *val = 0; + } + if returned.is_some() { + *returned = Some(0); + } + }, } } - panic!("No {} found at depth 1", op_name); + normalized } - fn trace_call( - config: &ExecutionTracerConfig, - caller_addr: sp_core::H160, - call_data: Vec, - ) -> ExecutionTrace { - let mut tracer = ExecutionTracer::new(config.clone()); - let _ = trace(&mut tracer, || { - builder::bare_call(caller_addr).data(call_data).build_and_unwrap_result() - }); - tracer.collect_trace() - } - - let (caller_code, _) = compile_module_with_type("Caller", fixture_type).unwrap(); - let (callee_code, _) = compile_module_with_type("Callee", fixture_type).unwrap(); - - ExtBuilder::default().existential_deposit(200).build().execute_with(|| { - let _ = ::Currency::set_balance(&ALICE, 100_000_000_000); - - let Contract { addr: callee_addr, .. } = - builder::bare_instantiate(Code::Upload(callee_code)).build_and_unwrap_contract(); - let Contract { addr: caller_addr, .. } = - builder::bare_instantiate(Code::Upload(caller_code)).build_and_unwrap_contract(); - - let config = ExecutionTracerConfig { - enable_memory: false, - disable_stack: true, - disable_storage: true, - enable_return_data: false, - disable_syscall_details: true, - limit: None, - memory_word_limit: 0, - }; - - // Test CALL / call_evm - let call_trace = trace_call( - &config, - caller_addr, - Caller::normalCall { - _callee: callee_addr.0.into(), - _value: 0, - _data: Callee::echoCall { _data: 42u64 }.abi_encode().into(), - _gas: u64::MAX, - } - .abi_encode(), - ); + /// Verifies gas consistency using consecutive step equations. + /// EVM: gas - gas_cost == next_step.gas (exact) + /// PVM: gas - gas_cost >= next_step.gas (inequality) + fn verify_gas_consistency(trace: &ExecutionTrace, is_evm: bool, name: &str) { + let violations: Vec<_> = trace + .struct_logs + .iter() + .zip(trace.struct_logs.iter().skip(1)) + .enumerate() + .filter(|(_, (curr, next))| curr.depth == next.depth) + .filter_map(|(i, (curr, next))| { + let expected = curr.gas.saturating_sub(curr.gas_cost); + let valid = if is_evm { expected == next.gas } else { next.gas <= expected }; + (!valid).then_some((i, curr.depth, curr.gas, curr.gas_cost, expected, next.gas)) + }) + .collect(); assert!( - call_trace.struct_logs.iter().any(|s| s.depth > 1), - "Should have nested call steps" + violations.is_empty(), + "{name}: gas violations (step, depth, gas, gas_cost, expected, actual): {violations:?}", ); - let (call_op, call_name) = match fixture_type { - FixtureType::Solc | FixtureType::SolcRuntime => - (CallOp::Evm(revm::bytecode::opcode::CALL), "CALL"), - FixtureType::Resolc | FixtureType::Rust => - (CallOp::Pvm(lookup_syscall_index("call_evm").unwrap()), "call_evm"), - }; - verify_call_gas(&call_trace, call_op, call_name); - - // Test DELEGATECALL / delegate_call_evm - let delegate_trace = trace_call( - &config, - caller_addr, - Caller::delegateCall { - _callee: callee_addr.0.into(), - _data: Callee::echoCall { _data: 42u64 }.abi_encode().into(), - _gas: u64::MAX, + // Verify sum of gas_cost at depth 1 relates to total trace gas + let depth1_sum: u64 = + trace.struct_logs.iter().filter(|s| s.depth == 1).map(|s| s.gas_cost).sum(); + + if is_evm { + // For EVM, first step's gas minus last step's remaining gas should equal sum + if let (Some(first), Some(last)) = (trace.struct_logs.first(), trace.struct_logs.last()) + { + let total_consumed = + first.gas.saturating_sub(last.gas.saturating_sub(last.gas_cost)); + assert_eq!( + depth1_sum, total_consumed, + "{name}: depth 1 gas_cost sum ({depth1_sum}) != total consumed ({total_consumed})", + ); } - .abi_encode(), - ); - - let (delegate_op, delegate_name) = match fixture_type { - FixtureType::Solc | FixtureType::SolcRuntime => - (CallOp::Evm(revm::bytecode::opcode::DELEGATECALL), "DELEGATECALL"), - FixtureType::Resolc | FixtureType::Rust => ( - CallOp::Pvm(lookup_syscall_index("delegate_call_evm").unwrap()), - "delegate_call_evm", - ), - }; - verify_call_gas(&delegate_trace, delegate_op, delegate_name); - }); -} - -#[test] -fn execution_tracing_works_for_pvm() { - use crate::{ - evm::{ - ExecutionStep, ExecutionStepKind, ExecutionTrace, ExecutionTracer, - ExecutionTracerConfig, - }, - tracing::trace, - vm::pvm::env::lookup_syscall_index, - }; - use sp_core::U256; - let (code, _) = compile_module_with_type("Fibonacci", FixtureType::Resolc).unwrap(); - ExtBuilder::default().existential_deposit(200).build().execute_with(|| { - let _ = ::Currency::set_balance(&ALICE, 100_000_000); - let Contract { addr, .. } = - builder::bare_instantiate(Code::Upload(code)).build_and_unwrap_contract(); - - let config = ExecutionTracerConfig { - enable_return_data: true, - limit: Some(5), - ..Default::default() - }; - - let mut tracer = ExecutionTracer::new(config); - let _result = trace(&mut tracer, || { - builder::bare_call(addr) - .data(Fibonacci::FibonacciCalls::fib(Fibonacci::fibCall { n: 3u64 }).abi_encode()) - .build_and_unwrap_result() - }); + } + } - let mut actual_trace = tracer.collect_trace(); - actual_trace.struct_logs.iter_mut().for_each(|step| { - step.gas = Default::default(); - step.gas_cost = Default::default(); - step.weight_cost = Default::default(); - // Replace args with 42 as they contain memory addresses that may vary between runs - if let ExecutionStepKind::PVMSyscall { args, .. } = &mut step.kind { - args.iter_mut().for_each(|arg| *arg = 42); - } - }); + for test_case in test_cases { + for fixture_type in [FixtureType::Solc, FixtureType::Resolc] { + ExtBuilder::default().existential_deposit(200).build().execute_with(|| { + let _ = ::Currency::set_balance(&ALICE, 100_000_000_000); - let expected_trace = ExecutionTrace { - gas: actual_trace.gas, - base_call_weight: Default::default(), - weight_consumed: Default::default(), - failed: false, - return_value: crate::evm::Bytes(U256::from(2).to_big_endian().to_vec()), - struct_logs: vec![ - ExecutionStep { - depth: 1, - return_data: crate::evm::Bytes::default(), - error: None, - gas: Default::default(), - gas_cost: Default::default(), - weight_cost: Default::default(), - kind: ExecutionStepKind::PVMSyscall { - op: lookup_syscall_index("call_data_size").unwrap_or_default(), - args: vec![], - returned: Some(36), - }, - }, - ExecutionStep { - depth: 1, - return_data: crate::evm::Bytes::default(), - error: None, - gas: Default::default(), - gas_cost: Default::default(), - weight_cost: Default::default(), - kind: ExecutionStepKind::PVMSyscall { - op: lookup_syscall_index("call_data_load").unwrap_or_default(), - args: vec![42, 42], - returned: None, - }, - }, - ExecutionStep { - depth: 1, - return_data: crate::evm::Bytes::default(), - error: None, - gas: Default::default(), - gas_cost: Default::default(), - weight_cost: Default::default(), - kind: ExecutionStepKind::PVMSyscall { - op: lookup_syscall_index("value_transferred").unwrap_or_default(), - args: vec![42], - returned: None, - }, - }, - ExecutionStep { - depth: 1, - return_data: crate::evm::Bytes::default(), - error: None, - gas: Default::default(), - gas_cost: Default::default(), - weight_cost: Default::default(), - kind: ExecutionStepKind::PVMSyscall { - op: lookup_syscall_index("call_data_load").unwrap_or_default(), - args: vec![42, 42], - returned: None, - }, - }, - ExecutionStep { - depth: 1, - return_data: crate::evm::Bytes::default(), - error: None, - gas: Default::default(), - gas_cost: Default::default(), - weight_cost: Default::default(), - kind: ExecutionStepKind::PVMSyscall { - op: lookup_syscall_index("seal_return").unwrap_or_default(), - args: vec![42, 42, 42], - returned: None, - }, - }, - ], - }; + let actual_trace = (test_case.setup)(fixture_type); + let is_evm = matches!(fixture_type, FixtureType::Solc | FixtureType::SolcRuntime); + let name = test_case.name; + let vm_type = if is_evm { "EVM" } else { "PVM" }; - assert_eq!(actual_trace, expected_trace); - }); + let expected_json_str = if is_evm { + test_case.expected_evm_trace + } else { + test_case.expected_pvm_trace + }; + let expected: ExecutionTrace = serde_json::from_str(expected_json_str) + .unwrap_or_else(|e| { + panic!("{name} ({vm_type}): failed to parse expected JSON: {e}") + }); + // Normalize both traces for comparison (zeroes out dynamic values) + let normalized_actual = normalize_trace(&actual_trace); + let normalized_expected = normalize_trace(&expected); + assert_eq!( + normalized_actual, normalized_expected, + "{name} ({vm_type}): trace mismatch" + ); + + verify_gas_consistency(&actual_trace, is_evm, &format!("{name} ({vm_type})")); + }); + } + } } From 7b46bb22259a9c5cd894e686bc22ff4a9b919870 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=B3nica=20Jin?= Date: Fri, 30 Jan 2026 15:06:43 +0100 Subject: [PATCH 5/5] add forwarded gas to gasCost --- .../revive/src/evm/api/debug_rpc_types.rs | 5 +- .../revive/src/evm/tracing/call_tracing.rs | 1 + .../src/evm/tracing/execution_tracing.rs | 20 ++++- .../src/evm/tracing/prestate_tracing.rs | 1 + substrate/frame/revive/src/exec.rs | 8 ++ substrate/frame/revive/src/tests/sol.rs | 90 +++++++++++++++---- substrate/frame/revive/src/tracing.rs | 8 +- 7 files changed, 108 insertions(+), 25 deletions(-) diff --git a/substrate/frame/revive/src/evm/api/debug_rpc_types.rs b/substrate/frame/revive/src/evm/api/debug_rpc_types.rs index d9b37c78de23b..46a7d9f667cba 100644 --- a/substrate/frame/revive/src/evm/api/debug_rpc_types.rs +++ b/substrate/frame/revive/src/evm/api/debug_rpc_types.rs @@ -110,9 +110,8 @@ impl<'de> Deserialize<'de> for TracerConfig { } match TracerConfigHelper::deserialize(deserializer)? { - TracerConfigHelper::WithType(cfg) => { - Ok(TracerConfig { config: cfg.config, timeout: cfg.timeout }) - }, + TracerConfigHelper::WithType(cfg) => + Ok(TracerConfig { config: cfg.config, timeout: cfg.timeout }), TracerConfigHelper::Inline(cfg) => Ok(TracerConfig { config: TracerType::ExecutionTracer(Some(cfg.execution_tracer_config)), timeout: cfg.timeout, diff --git a/substrate/frame/revive/src/evm/tracing/call_tracing.rs b/substrate/frame/revive/src/evm/tracing/call_tracing.rs index b492458852c52..499e7d91cd55c 100644 --- a/substrate/frame/revive/src/evm/tracing/call_tracing.rs +++ b/substrate/frame/revive/src/evm/tracing/call_tracing.rs @@ -79,6 +79,7 @@ impl Tracing for CallTracer { value: U256, input: &[u8], gas_limit: u64, + _parent_gas_left: Option, ) { // Increment parent's child call count. if let Some(&index) = self.current_stack.last() { diff --git a/substrate/frame/revive/src/evm/tracing/execution_tracing.rs b/substrate/frame/revive/src/evm/tracing/execution_tracing.rs index 35f1c365b1416..2e4414ef90417 100644 --- a/substrate/frame/revive/src/evm/tracing/execution_tracing.rs +++ b/substrate/frame/revive/src/evm/tracing/execution_tracing.rs @@ -205,7 +205,12 @@ impl Tracing for ExecutionTracer { fn exit_step(&mut self, trace_info: &dyn FrameTraceInfo, returned: Option) { if let Some(step_index) = self.pending_steps.pop() { if let Some(step) = self.steps.get_mut(step_index) { - step.gas_cost = step.gas.saturating_sub(trace_info.gas_left()); + // For call/instantiation opcodes, gas_cost was already set in enter_child_span + // (opcode_cost + gas_forwarded). For other opcodes, calculate it here. + if step.gas_cost == 0 { + step.gas_cost = step.gas.saturating_sub(trace_info.gas_left()); + } + // weight_cost is the total weight consumed (including child calls) step.weight_cost = trace_info.weight_consumed().saturating_sub(step.weight_cost); if !self.config.disable_syscall_details { if let ExecutionStepKind::PVMSyscall { returned: ref mut ret, .. } = step.kind { @@ -224,8 +229,19 @@ impl Tracing for ExecutionTracer { _is_read_only: bool, _value: U256, _input: &[u8], - _gas_limit: u64, + gas_limit: u64, + parent_gas_left: Option, ) { + // Set gas_cost of the pending call/instantiation step. + // gas_cost = opcode_gas_cost + gas_forwarded + if let Some(&step_index) = self.pending_steps.last() { + if let Some(step) = self.steps.get_mut(step_index) { + if let Some(parent_gas) = parent_gas_left { + let opcode_gas_cost = step.gas.saturating_sub(parent_gas); + step.gas_cost = opcode_gas_cost.saturating_add(gas_limit); + } + } + } self.storages_per_call.push(Default::default()); self.depth += 1; } diff --git a/substrate/frame/revive/src/evm/tracing/prestate_tracing.rs b/substrate/frame/revive/src/evm/tracing/prestate_tracing.rs index 82785e58c4fa9..1527bc9a968b5 100644 --- a/substrate/frame/revive/src/evm/tracing/prestate_tracing.rs +++ b/substrate/frame/revive/src/evm/tracing/prestate_tracing.rs @@ -259,6 +259,7 @@ where _value: U256, _input: &[u8], _gas_limit: u64, + _parent_gas_left: Option, ) { if let Some(delegate_call) = delegate_call { self.calls.push(self.current_addr()); diff --git a/substrate/frame/revive/src/exec.rs b/substrate/frame/revive/src/exec.rs index f4ec66eb3bc17..1df0faad1917f 100644 --- a/substrate/frame/revive/src/exec.rs +++ b/substrate/frame/revive/src/exec.rs @@ -890,6 +890,7 @@ where value, &input_data, Default::default(), + None, ); }); @@ -1232,6 +1233,11 @@ where let is_pvm = executable.is_pvm(); if_tracing(|tracer| { + let parent_gas_left = self + .frames() + .nth(1) + .and_then(|f| f.frame_meter.eth_gas_left()) + .map(|g| g.try_into().unwrap_or_default()); tracer.enter_child_span( self.caller().account_id().map(T::AddressMapper::to_address).unwrap_or_default(), T::AddressMapper::to_address(&frame.account_id), @@ -1245,6 +1251,7 @@ where .unwrap_or_default() .try_into() .unwrap_or_default(), + parent_gas_left, ); }); let mock_answer = self.exec_config.mock_handler.as_ref().and_then(|handler| { @@ -2098,6 +2105,7 @@ where value, &input_data, Default::default(), + None, ); }); let result = if let Some(mock_answer) = diff --git a/substrate/frame/revive/src/tests/sol.rs b/substrate/frame/revive/src/tests/sol.rs index 14682b2ae04c0..942ed0a24698b 100644 --- a/substrate/frame/revive/src/tests/sol.rs +++ b/substrate/frame/revive/src/tests/sol.rs @@ -746,11 +746,20 @@ fn execution_tracing_works() { normalized } - /// Verifies gas consistency using consecutive step equations. - /// EVM: gas - gas_cost == next_step.gas (exact) - /// PVM: gas - gas_cost >= next_step.gas (inequality) + /// Verifies gas consistency for execution traces. + /// + /// Gas equations: + /// - gasCost = forwarded_gas + opcode_cost (for call/create opcodes) + /// - For consecutive steps at the same depth: + /// - EVM: gas - gas_cost == next_step.gas (exact) + /// - PVM: gas - gas_cost >= next_step.gas (inequality, PVM instructions consume extra gas) + /// - At call boundaries (depth increases): + /// - call.gasCost > subcall_first_step.gas (difference is the call opcode cost) + /// - Subcall gas totals: + /// - Sum of gasCost in subcall <= parent call's gasCost fn verify_gas_consistency(trace: &ExecutionTrace, is_evm: bool, name: &str) { - let violations: Vec<_> = trace + // 1. Verify consecutive steps at the same depth + let same_depth_violations: Vec<_> = trace .struct_logs .iter() .zip(trace.struct_logs.iter().skip(1)) @@ -764,25 +773,68 @@ fn execution_tracing_works() { .collect(); assert!( - violations.is_empty(), - "{name}: gas violations (step, depth, gas, gas_cost, expected, actual): {violations:?}", + same_depth_violations.is_empty(), + "{name}: same-depth gas violations (step, depth, gas, gas_cost, expected, actual): {same_depth_violations:?}", ); - // Verify sum of gas_cost at depth 1 relates to total trace gas - let depth1_sum: u64 = - trace.struct_logs.iter().filter(|s| s.depth == 1).map(|s| s.gas_cost).sum(); + // 2. Verify call boundaries: call.gasCost > subcall_first_step.gas + // The difference is the call opcode cost (gasCost = forwarded_gas + opcode_cost) + let call_boundary_violations: Vec<_> = trace + .struct_logs + .iter() + .zip(trace.struct_logs.iter().skip(1)) + .enumerate() + .filter(|(_, (curr, next))| next.depth == curr.depth + 1) + .filter_map(|(i, (call_step, subcall_first))| { + // call.gasCost should be > subcall_first.gas + // because gasCost = forwarded_gas + opcode_cost + let valid = call_step.gas_cost > subcall_first.gas; + (!valid).then_some(( + i, + call_step.depth, + call_step.gas_cost, + subcall_first.gas, + call_step.gas_cost.saturating_sub(subcall_first.gas), + )) + }) + .collect(); - if is_evm { - // For EVM, first step's gas minus last step's remaining gas should equal sum - if let (Some(first), Some(last)) = (trace.struct_logs.first(), trace.struct_logs.last()) - { - let total_consumed = - first.gas.saturating_sub(last.gas.saturating_sub(last.gas_cost)); - assert_eq!( - depth1_sum, total_consumed, - "{name}: depth 1 gas_cost sum ({depth1_sum}) != total consumed ({total_consumed})", - ); + assert!( + call_boundary_violations.is_empty(), + "{name}: call boundary violations (step, depth, call.gasCost, subcall.gas, opcode_cost): {call_boundary_violations:?}", + ); + + // 3. Verify subcall gas totals: sum of gasCost in subcall <= parent call's gasCost + // Find all call steps (where next step has higher depth) and verify their subcalls + let logs = &trace.struct_logs; + for (i, (call_step, next_step)) in logs.iter().zip(logs.iter().skip(1)).enumerate() { + if next_step.depth != call_step.depth + 1 { + continue; } + + // Find the range of the subcall (all steps at depth > call_step.depth until we return) + let subcall_start = i + 1; + let subcall_end = logs[subcall_start..] + .iter() + .position(|s| s.depth <= call_step.depth) + .map(|pos| subcall_start + pos) + .unwrap_or(logs.len()); + + // Sum all gasCost at the immediate subcall depth + let subcall_depth = call_step.depth + 1; + let subcall_gas_sum: u64 = logs[subcall_start..subcall_end] + .iter() + .filter(|s| s.depth == subcall_depth) + .map(|s| s.gas_cost) + .sum(); + + // The sum of subcall gasCost should be <= parent call's gasCost + assert!( + subcall_gas_sum <= call_step.gas_cost, + "{name}: subcall gas sum ({subcall_gas_sum}) > parent call gasCost ({}) at step {i}, depth {}", + call_step.gas_cost, + call_step.depth, + ); } } diff --git a/substrate/frame/revive/src/tracing.rs b/substrate/frame/revive/src/tracing.rs index 10e35fde24e67..77fe7b980ff3f 100644 --- a/substrate/frame/revive/src/tracing.rs +++ b/substrate/frame/revive/src/tracing.rs @@ -69,7 +69,12 @@ pub trait Tracing { /// Register an address that should be traced. fn watch_address(&mut self, _addr: &H160) {} - /// Called before a contract call is executed + /// Called before a contract call is executed. + /// + /// For CALL/DELEGATECALL opcodes: + /// - `gas_limit`: gas forwarded to the child call + /// - `parent_gas_left`: parent's remaining gas after opcode costs (used to calculate opcode gas + /// cost) fn enter_child_span( &mut self, _from: H160, @@ -79,6 +84,7 @@ pub trait Tracing { _value: U256, _input: &[u8], _gas_limit: u64, + _parent_gas_left: Option, ) { }